Lines Matching refs:precision
43 static char * number(char * str, unsigned long long num, int base, int size, int precision, int type)
82 if (i > precision)
83 precision = i;
84 size -= precision;
101 while (i < precision--)
121 int precision; /* min. # of digits for integers; max
160 /* get the precision */
161 precision = -1;
165 precision = skip_atoi(&fmt);
169 precision = va_arg(args, int);
171 if (precision < 0)
172 precision = 0;
204 len = strnlen(s, precision);
222 field_width, precision, flags);
287 str = number(str, num, base, field_width, precision, flags);