Home | History | Annotate | Download | only in Support

Lines Matching refs:digit

249    non-zero digit.
251 If the value is zero, V->firstSigDigit points to a non-digit, and
288 /* p points to the first non-digit in the string */
318 DIGITVALUE is the first hex digit of the fraction, P points to
319 the next digit. */
326 /* If the first trailing digit isn't 0 or 8 we can work out the
333 /* Otherwise we need to find the first non-zero digit. */
2438 N-digit decimal integer is N * 196 / 59. Allocate enough space
2468 digit added without overflowing an integerPart. */
2528 The decimal exponent is always printed and has at least one digit.
2533 what the leading hexadecimal digit should be. This implementation
2536 range, and the leading hexadecimal digit will be 0 (for denormals),
2610 /* +3 because the first digit only uses the single integer bit, so
2637 of the hexadecimal point. We move the most significant digit
2679 /* Move the most significant digit to before the point, and if there
3371 // If we carried through, we have exactly one digit of precision.
3476 APInt digit(precision, 0);
3480 // digit <- significand % 10
3482 APInt::udivrem(significand, ten, significand, digit);
3484 unsigned d = digit.getZExtValue();
3514 // Power of the most significant digit.