Searched refs:print_max (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.3-release/contrib/gdb/gdb/
H A Dvalprint.h34 extern unsigned int print_max; /* Max # of chars for strings/vectors */
H A Dscm-valprint.c98 unsigned int more = print_max;
227 int truncate = print_max && len > (int) print_max;
229 len = print_max;
H A Df-valprint.c290 for (i = 0; (i < F77_DIM_SIZE (nss) && (*elts) < print_max); i++)
299 if (*elts >= print_max && i < F77_DIM_SIZE (nss))
304 for (i = 0; i < F77_DIM_SIZE (nss) && (*elts) < print_max;
316 if ((*elts == print_max - 1) && (i != (F77_DIM_SIZE (nss) - 1)))
H A Dvalprint.c65 stores UINT_MAX in print_max, which displays in a show command as
68 unsigned int print_max; variable
69 #define PRINT_MAX_DEFAULT 200 /* Start print_max off at this value. */
982 for (; i < len && things_printed < print_max; i++)
1077 bytes) until either print_max or LEN characters have been printed,
1098 LEN >= zero, then the limit is the minimum of LEN and print_max. If
1099 LEN is -1, then the limit is print_max. This is true regardless of
1100 whether print_max is zero, UINT_MAX (unlimited), or something in between,
1104 fetchlimit = (len == -1 ? print_max : min (len, print_max));
[all...]
H A Dada-valprint.c168 while (i < len && things_printed < print_max)
370 Printing stops early if the number hits print_max; repeat counts
391 for (i = 0; i < length && things_printed < print_max; i += 1)
715 temp_len < len && temp_len < print_max
H A Djv-valprint.c101 while (i < length && things_printed < print_max)
157 while (i < length && things_printed < print_max)
H A Dm2-lang.c105 Printing stops early if the number hits print_max; repeat counts
126 for (i = 0; i < length && things_printed < print_max; ++i)
H A Dc-valprint.c113 && temp_len < len && temp_len < print_max;
H A Dobjc-lang.c331 characters. Printing stops early if the number hits print_max;
357 for (i = 0; i < length && things_printed < print_max; ++i)
H A Dp-valprint.c102 && temp_len < len && temp_len < print_max;

Completed in 87 milliseconds