Searched defs:prec (Results 1 - 7 of 7) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
H A Dk_rem_pio2.c18 * __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/kernel/uapi/linux/
H A Djoystick.h54 __s16 prec; member in struct:js_corr
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Djoystick.h54 __s16 prec; member in struct:js_corr
/bionic/libc/bionic/
H A Dlibc_logging.cpp245 int prec = -1; local
306 prec = static_cast<int>(parse_decimal(format, &nn));
394 if (sign != '\0' || prec != -1) {
/bionic/libc/dns/resolv/
H A Dres_debug.c761 precsize_ntoa(u_int32_t prec) argument
767 mantissa = (int)((prec >> 4) & 0x0f) % 10;
768 exponent = (int)((prec >> 0) & 0x0f) % 10;
/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dvfprintf.c150 * string representation. If not -1, prec specifies the maximum number of
155 __wcsconv(wchar_t *wcsarg, int prec) argument
164 if (prec < 0) {
176 if (prec < 128)
177 nbytes = prec;
185 nbytes + clen > (size_t)prec)
279 int prec; /* precision from format; <0 for N/A */ local
316 int dprec; /* a copy of prec if %[diouxX], 0 otherwise */
514 prec = -1;
558 prec
[all...]
H A Dvfwprintf.c158 * string representation. ``prec'' specifies the maximum number of bytes
159 * to output. If ``prec'' is greater than or equal to zero, we can't assume
166 __mbsconv(char *mbsarg, int prec) argument
180 if (prec >= 0) {
188 while (nchars != (size_t)prec) {
288 int prec; /* precision from format; <0 for N/A */ local
323 int dprec; /* a copy of prec if %[diouxX], 0 otherwise */
486 prec = -1;
530 prec = n < 0 ? -1 : n;
547 prec
[all...]

Completed in 2974 milliseconds