Lines Matching refs:prec
238 static int type_s(xprintf_struct *s, int width, int prec, in type_s() argument
249 while (arg_string[string_len] != 0 && (size_t)prec != string_len) in type_s()
298 int width, prec, modifier, approx_width; in dispatch() local
372 prec = va_arg(s->vargs, int); in dispatch()
373 if ((size_t)prec >= 0x3fffU) /* 'size_t' to check against negative values too */ in dispatch()
374 prec = 0x3fff; in dispatch()
378 prec = getint(&SRCTXT); in dispatch()
382 prec = -1; /* no .prec specified */ in dispatch()
440 if (prec != -1) { in dispatch()
443 sprintf(format_ptr, "%i", prec); in dispatch()
464 approx_width = width + prec; in dispatch()
519 return type_s(s, width, prec, format_string, va_arg(s->vargs, const char*)); in dispatch()