Lines Matching defs:digit
46 /// A utility function that converts a character to a digit.
1323 DEBUG_KNUTH(dbgs() << "KnuthDiv: quotient digit #" << j << '\n');
1389 DEBUG_KNUTH(dbgs() << "\nKnuthDiv: digit result = " << q[j] << '\n');
2117 // Enter digit traversal loop
2119 unsigned digit = getDigit(*p, radix);
2120 assert(digit < radix && "Invalid character in digit string");
2130 // Add in the digit we just interpreted
2131 *this += digit;
2236 // because the number of bits per digit (1, 3 and 4 respectively) divides
2239 // Just shift tmp right for each digit width until it becomes zero
2444 src = 1; // Carry one to next digit.