Searched refs:xdigs (Results 1 – 3 of 3) sorted by relevance
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
D | hdtoa.c | 123 __hdtoa(double d, const char *xdigs, int ndigits, int *decpt, int *sign, in __hdtoa() argument 209 *s = xdigs[(unsigned int)*s]; in __hdtoa() 221 __hldtoa(long double e, const char *xdigs, int ndigits, int *decpt, int *sign, in __hldtoa() argument 321 *s = xdigs[(unsigned int)*s]; in __hldtoa() 330 __hldtoa(long double e, const char *xdigs, int ndigits, int *decpt, int *sign, in __hldtoa() argument 333 return (__hdtoa((double)e, xdigs, ndigits, decpt, sign, rve)); in __hldtoa()
|
/bionic/libc/stdio/ |
D | vfwprintf.cpp | 88 const char* xdigs; /* digits for %[xX] conversion */ in FUNCTION_NAME() local 323 xdigs = xdigs_lower; in FUNCTION_NAME() 327 xdigs = xdigs_upper; in FUNCTION_NAME() 334 dtoaresult = __hldtoa(fparg.ldbl, xdigs, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME() 341 dtoaresult = __hdtoa(fparg.dbl, xdigs, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME() 468 xdigs = xdigs_lower; in FUNCTION_NAME() 508 xdigs = xdigs_upper; in FUNCTION_NAME() 511 xdigs = xdigs_lower; in FUNCTION_NAME() 562 *--cp = xdigs[_umax & 15]; in FUNCTION_NAME()
|
D | vfprintf.cpp | 88 const char* xdigs; /* digits for %[xX] conversion */ in FUNCTION_NAME() local 345 xdigs = xdigs_lower; in FUNCTION_NAME() 349 xdigs = xdigs_upper; in FUNCTION_NAME() 356 dtoaresult = cp = __hldtoa(fparg.ldbl, xdigs, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME() 363 dtoaresult = cp = __hdtoa(fparg.dbl, xdigs, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME() 475 xdigs = xdigs_lower; in FUNCTION_NAME() 519 xdigs = xdigs_upper; in FUNCTION_NAME() 522 xdigs = xdigs_lower; in FUNCTION_NAME() 573 *--cp = xdigs[_umax & 15]; in FUNCTION_NAME()
|