Lines Matching defs:digits
55 * digits; fix the handling of various corner cases of field width and
1045 - MAX(precision, pos) /* Number of integer digits. */
1079 while (pos > 0) { /* The actual digits. */
1154 * specifies the number of significant digits, which
1155 * includes the digits in the integer part. The
1180 * Sorry, we only support 9, 19, or 38 digits (that is, the number of
1181 * digits of the 32-bit, the 64-bit, or the 128-bit UINTMAX_MAX value
1209 * Factor of ten with the number of digits needed for the fractional
1273 * support an exponent which contains more than two digits.
1278 * C99 says: "The exponent always contains at least two digits,
1279 * and only as many more digits as necessary to represent the
1316 - ipos /* Number of integer digits. */
1318 - precision /* Number of fractional digits. */
1396 getnumsep(int digits)
1398 int separators = (digits - ((digits % 3 == 0) ? 1 : 0)) / 3;
1437 const char *digits = caps ? "0123456789ABCDEF" : "0123456789abcdef";
1440 /* We return an unterminated buffer with the digits in reverse order. */
1442 buf[pos++] = digits[value % base];
2067 double value, digits = 9.123456789012345678901234567890123456789;
2118 (void)fputs("Checking how many digits we support: ", stdout);
2120 value = pow(10, i) * digits;