Home
last modified time | relevance | path

Searched refs:precision_arg_index (Results 1 – 3 of 3) sorted by relevance

/dflybsd-src/contrib/cvs-1.12/lib/
H A Dprintf-parse.c130 dp->precision_arg_index = ARG_NONE; in PRINTF_PARSE()
280 dp->precision_arg_index = n - 1; in PRINTF_PARSE()
284 if (dp->precision_arg_index == ARG_NONE) in PRINTF_PARSE()
286 dp->precision_arg_index = arg_posn++; in PRINTF_PARSE()
287 if (dp->precision_arg_index == ARG_NONE) in PRINTF_PARSE()
291 REGISTER_ARG (dp->precision_arg_index, TYPE_INT); in PRINTF_PARSE()
H A Dvasnprintf.c309 if (dp->precision_arg_index != ARG_NONE) in VASNPRINTF()
313 if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) in VASNPRINTF()
315 arg = a.arg[dp->precision_arg_index].a.a_int; in VASNPRINTF()
576 if (dp->precision_arg_index != ARG_NONE) in VASNPRINTF()
578 if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) in VASNPRINTF()
580 prefixes[prefix_count++] = a.arg[dp->precision_arg_index].a.a_int; in VASNPRINTF()
H A Dprintf-parse.h46 size_t precision_arg_index; member