Lines Matching refs:precision
79 static char * number(char * str, unsigned long long num, int base, int size, int precision, int type)
118 if (i > precision)
119 precision = i;
120 size -= precision;
137 while (i < precision--)
157 int precision; /* min. # of digits for integers; max
196 /* get the precision */
197 precision = -1;
201 precision = skip_atoi(&fmt);
205 precision = va_arg(args, int);
207 if (precision < 0)
208 precision = 0;
240 len = strnlen(s, precision);
258 field_width, precision, flags);
323 str = number(str, num, base, field_width, precision, flags);