Searched refs:ndigit (Results 1 – 5 of 5) sorted by relevance
| /openbsd/src/lib/libc/stdlib/ |
| D | ecvt.c | 31 __cvt(double value, int ndigit, int *decpt, int *sign, int fmode, int pad) in __cvt() argument 37 if (ndigit == 0) { in __cvt() 46 if (ndigit < 0) in __cvt() 47 siz = -ndigit + 1; in __cvt() 49 siz = ndigit + 1; in __cvt() 61 p = __dtoa(value, fmode + 2, ndigit, decpt, sign, &rve); in __cvt() 95 ecvt(double value, int ndigit, int *decpt, int *sign) in ecvt() argument 97 return(__cvt(value, ndigit, decpt, sign, 0, 1)); in ecvt() 101 fcvt(double value, int ndigit, int *decpt, int *sign) in fcvt() argument 103 return(__cvt(value, ndigit, decpt, sign, 1, 1)); in fcvt()
|
| D | gcvt.c | 33 gcvt(double value, int ndigit, char *buf) in gcvt() argument 40 if (ndigit <= 0) { in gcvt() 42 ndigit = ndigit ? DEFPREC : 1; in gcvt() 45 digits = __dtoa(value, 2, ndigit, &decpt, &sign, NULL); in gcvt() 65 if (decpt <= -4 || decpt > ndigit) { in gcvt()
|
| /openbsd/src/gnu/usr.bin/binutils/gas/ |
| D | expr.c | 400 int ndigit = 0; in integer_constant() local 407 ndigit++; in integer_constant() 411 if (ndigit > 8) in integer_constant()
|
| /openbsd/src/gnu/usr.bin/binutils-2.17/gas/ |
| D | expr.c | 374 int ndigit = 0; in integer_constant() local 381 ndigit++; in integer_constant() 385 if (ndigit > 8) in integer_constant()
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/msan/ |
| D | msan_interceptors.cpp | 358 INTERCEPTOR(char *, gcvt, double number, SIZE_T ndigit, char *buf) { in INTERCEPTOR() argument 360 char *res = REAL(gcvt)(number, ndigit, buf); in INTERCEPTOR()
|