Lines Matching refs:prec
187 int prec; /* precision from format (%.3d), or -1 */
192 int dprec; /* a copy of prec if [diouxX], 0 otherwise */
359 prec = -1;
403 prec = n < 0 ? -1 : n;
423 prec = n < 0 ? -1 : n;
525 if (prec >= 0)
535 if (prec > 120)
536 prec = 120;
537 if (prec >= 0)
540 prec, val);
542 sprintf(out, fmt, width, prec, val);
608 if (prec >= 0)
612 ** NUL in the first `prec' characters, and
616 char *p = memchr(cp, 0, prec);
621 if (size > prec)
622 size = prec;
625 size = prec;
658 number: if ((dprec = prec) >= 0)
668 if (_uquad != 0 || prec != 0)
739 ** size excludes decimal prec; realsz includes it.