Lines Matching defs:digit
543 non-zero digit.
545 If the value is zero, V->firstSigDigit points to a non-digit, and
588 /* p points to the first non-digit in the string */
622 DIGITVALUE is the first hex digit of the fraction, P points to
623 the next digit. */
629 /* If the first trailing digit isn't 0 or 8 we can work out the
636 // Otherwise we need to find the first non-zero digit.
3122 // D->firstSigDigit equals str.end(), every digit must be a zero and there can
3160 N-digit decimal integer is N * 196 / 59. Allocate enough space
3193 digit added without overflowing an integerPart. */
3332 The decimal exponent is always printed and has at least one digit.
3337 what the leading hexadecimal digit should be. This implementation
3340 range, and the leading hexadecimal digit will be 0 (for denormals),
3409 /* +3 because the first digit only uses the single integer bit, so
3436 of the hexadecimal point. We move the most significant digit
3478 /* Move the most significant digit to before the point, and if there
4268 // If we carried through, we have exactly one digit of precision.
4355 APInt digit(precision, 0);
4359 // digit <- significand % 10
4361 APInt::udivrem(significand, ten, significand, digit);
4363 unsigned d = digit.getZExtValue();
4394 // Power of the most significant digit.