Searched refs:max_ref_arg (Results 1 – 4 of 4) sorted by relevance
/stdio-common/ |
A D | printf-prs.c | 62 size_t max_ref_arg; /* Highest index used in a positional arg. */ in parse_printf_format() local 67 max_ref_arg = 0; in parse_printf_format() 73 nargs += __parse_one_specmb (f, nargs, &spec, &max_ref_arg); in parse_printf_format() 101 return MAX (nargs, max_ref_arg); in parse_printf_format()
|
A D | printf-parsemb.c | 59 struct printf_spec *spec, size_t *max_ref_arg) in __parse_one_specwc() argument 62 struct printf_spec *spec, size_t *max_ref_arg) in __parse_one_specwc() 98 *max_ref_arg = MAX (*max_ref_arg, n); in __parse_one_specwc() 172 *max_ref_arg = MAX (*max_ref_arg, n); in __parse_one_specwc() 215 *max_ref_arg = MAX (*max_ref_arg, n); in __parse_one_specwc()
|
A D | printf-parse.h | 128 size_t *max_ref_arg) attribute_hidden; 132 size_t *max_ref_arg) attribute_hidden;
|
A D | vfprintf-internal.c | 1645 size_t max_ref_arg = 0; in printf_positional() local 1680 nargs += __parse_one_specwc (f, nargs, &specs[nspecs], &max_ref_arg); in printf_positional() 1682 nargs += __parse_one_specmb (f, nargs, &specs[nspecs], &max_ref_arg); in printf_positional() 1687 nargs = MAX (nargs, max_ref_arg); in printf_positional()
|
Completed in 7 milliseconds