Home | History | Annotate | Download | only in printf

Lines Matching refs:precision

110   /* Precision.  */
111 int precision = info->prec;
329 if (precision != -1 && precision < numend - numstr)
331 char last_digit = precision > 0 ? numstr[precision - 1] : leading;
332 char next_digit = numstr[precision];
344 || precision + 1 < numend - numstr);
353 if (precision == -1)
354 precision = numend - numstr;
358 int cnt = precision;
412 if (precision == -1)
413 precision = 0;
426 + 2 + 1 + 0 + precision + 1 + 1
432 A special case when the mantissa or the precision is zero and the `#'
434 if (precision > 0 || info->alt)
458 if (precision > 0 || info->alt)
464 if (precision > 0)
466 ssize_t tofill = precision - (numend - numstr);
467 PRINT (numstr, wnumstr, MIN (numend - numstr, precision));