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

/lib/
H A Dvsprintf.c179 * Code can be easily arranged to print 9 digits too, but our callers
180 * always call put_dec_full9() instead when the number has 9 decimal digits.
212 * groups of (up to) 9 digits. It's conceptually simple,
216 * manipulates them cleverly and generates groups of 4 decimal digits.
378 s16 precision; /* # of digits/chars */
386 static const char digits[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */ local
395 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
396 * produces same digits or (maybe lowercased) letters */
424 tmp[i++] = digits[num] | locase;
427 tmp[i++] = (digits[do_di
864 int digits = put_dec_trunc8(temp, addr[index]) - temp; local
[all...]

Completed in 99 milliseconds