/src/lib/libc/gdtoa/ |
hdtoa.c | 132 * - The additional xdigs argument should point to either the string 145 * Inputs: d, xdigs, ndigits 149 hdtoa(double d, const char *xdigs, int ndigits, int *decpt, int *sign, 208 * converted to xdigs[0x0] through xdigs[0xf] after the 251 *s = xdigs[(unsigned int)*s]; 262 hldtoa(long double e, const char *xdigs, int ndigits, int *decpt, int *sign, 314 * converted to xdigs[0x0] through xdigs[0xf] after the 362 *s = xdigs[(unsigned int)*s] [all...] |
gdtoa.h | 129 extern char* hdtoa ANSI((double d, const char *xdigs, int ndigits, int *decpt, 133 extern char* hldtoa ANSI((long double e, const char *xdigs, int ndigits,
|
/src/lib/libc/stdio/ |
vsnprintf_ss.c | 136 const char *xdigs; /* digits for [xX] conversion */ local in function:__weak_alias 160 xdigs = NULL; /* XXX: shut up gcc warning */ 317 xdigs = xdigs_lower; 355 xdigs = xdigs_upper; 358 xdigs = xdigs_lower; 409 *--cp = xdigs[(size_t)_uquad & 15];
|
vfwprintf.c | 262 __ultoa(u_long val, CHAR_T *endp, int base, int octzero, const char *xdigs, 327 *--cp = xdigs[(size_t)val & 15]; 341 const char *xdigs, int needgrp, char thousep, const char *grp) 350 return __ultoa((u_long)val, endp, base, octzero, xdigs, 401 *--cp = xdigs[(size_t)val & 15]; 674 const char *xdigs; /* digits for %[xX] conversion */ local in function:WDECL 888 xdigs = NULL; 1059 xdigs = xdigs_lower; 1063 xdigs = xdigs_upper; 1072 __hldtoa(fparg.ldbl, xdigs, prec [all...] |
/src/sys/kern/ |
subr_prf.c | 1269 const char *xdigs; /* digits for [xX] conversion */ local in function:kprintf 1284 xdigs = NULL; /* XXX: shut up gcc warning */ 1441 xdigs = hexdigits; 1475 xdigs = HEXDIGITS; 1478 xdigs = hexdigits; 1529 *--cp = xdigs[_uquad & 15];
|