Lines Matching refs:digit
250 non-zero digit.
252 If the value is zero, V->firstSigDigit points to a non-digit, and
289 /* p points to the first non-digit in the string */
319 DIGITVALUE is the first hex digit of the fraction, P points to
320 the next digit. */
327 /* If the first trailing digit isn't 0 or 8 we can work out the
334 /* Otherwise we need to find the first non-zero digit. */
2429 N-digit decimal integer is N * 196 / 59. Allocate enough space
2459 digit added without overflowing an integerPart. */
2519 The decimal exponent is always printed and has at least one digit.
2524 what the leading hexadecimal digit should be. This implementation
2527 range, and the leading hexadecimal digit will be 0 (for denormals),
2601 /* +3 because the first digit only uses the single integer bit, so
2628 of the hexadecimal point. We move the most significant digit
2670 /* Move the most significant digit to before the point, and if there
3361 // If we carried through, we have exactly one digit of precision.
3466 APInt digit(precision, 0);
3470 // digit <- significand % 10
3472 APInt::udivrem(significand, ten, significand, digit);
3474 unsigned d = digit.getZExtValue();
3504 // Power of the most significant digit.