Lines Matching defs:prec
189 int prec; /* precision from format (%.3d), or -1 */
194 int dprec; /* a copy of prec if [diouxX], 0 otherwise */
361 prec = -1;
405 prec = n < 0 ? -1 : n;
425 prec = n < 0 ? -1 : n;
527 if (prec >= 0)
537 if (prec > 120)
538 prec = 120;
539 if (prec >= 0)
542 prec, val);
544 sprintf(out, fmt, width, prec, val);
610 if (prec >= 0)
614 ** NUL in the first `prec' characters, and
618 char *p = memchr(cp, 0, prec);
623 if (size > prec)
624 size = prec;
627 size = prec;
660 number: if ((dprec = prec) >= 0)
670 if (_uquad != 0 || prec != 0)
741 ** size excludes decimal prec; realsz includes it.