Lines Matching defs:prec
76 int prec;139 prec = va_arg(ap, int);143 prec = 0;145 prec = prec * 10 + (*fmt++ - '0');149 prec = -1;154 * zero and 1 otherwise, "width" and "prec"159 * no decimal point, "prec" will be -1.190 if (prec < 0)191 prec = MAXINT;192 for (n=0; *bptr++ && n < prec; n++) ;