Lines Matching defs:print_max_chars
101 /* Start print_max_chars at this value (meaning follow print_max). */
118 PRINT_MAX_CHARS_DEFAULT, /* print_max_chars */
168 (user_print_options.print_max_chars != PRINT_MAX_CHARS_ELEMENTS
536 unsigned int print_max_chars = get_print_max_chars (options);
541 && temp_len < print_max_chars
550 if (temp_len == print_max_chars && temp_len < len)
2449 const int print_max = options->print_max_chars > 0
2450 ? options->print_max_chars : options->print_max;
2598 printing stops early if the number hits print_max_chars; repeat
2654 unsigned int print_max_chars = get_print_max_chars (options);
2655 while (i < print_max_chars)
2707 bytes) until either print_max_chars or LEN characters have been printed,
2730 If LEN >= zero, then the limit is the minimum of LEN and print_max_chars.
2731 If LEN is -1, then the limit is print_max_chars. This is true regardless
2732 of whether print_max_chars is zero, UINT_MAX (unlimited), or something in
2736 unsigned int print_max_chars = get_print_max_chars (options);
2738 ? print_max_chars
2739 : std::min ((unsigned) len, print_max_chars));
3038 [] (value_print_options *opt) { return &opt->print_max_chars; },