Searched defs:prec (Results 1 - 3 of 3) sorted by relevance
/bionic/libm/upstream-freebsd/lib/msun/src/ |
H A D | k_rem_pio2.c | 18 * __kernel_rem_pio2(x,y,e0,nx,prec) 19 * double x[],y[]; int e0,nx,prec; 68 * prec an integer indicating the precision: 294 __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec) argument 300 jk = init_jk[prec]; 408 switch(prec) {
|
/bionic/libc/bionic/ |
H A D | libc_logging.cpp | 237 int prec = -1; local 298 prec = (int)parse_decimal(format, &nn); 386 if (sign != '\0' || prec != -1) {
|
/bionic/libc/stdio/ |
H A D | vfprintf.c | 181 int prec; /* precision from format (%.3d), or -1 */ local 197 int dprec; /* a copy of prec if [diouxX], 0 otherwise */ 365 prec = -1; 403 prec = n < 0 ? -1 : n; 420 prec = n < 0 ? -1 : n; 499 if (prec == -1) { 500 prec = DEFPREC; 501 } else if ((ch == 'g' || ch == 'G') && prec == 0) { 502 prec = 1; 526 cp = cvt(_double, prec, flag [all...] |
Completed in 116 milliseconds