Lines Matching refs:Digits
207 /// no further borrowing is neeeded or it runs out of "digits" in x. The result
208 /// is 1 if "borrowing" exhausted the digits in x, or 0 if x was not exhausted.
219 break; // Remaining digits are unchanged so exit early
641 // the first few digits. But, I'm not sure how accurate that could be.
1508 // D1. [Normalize.] Set d = b / (v[n-1] + 1) and multiply all the digits of
1593 // The digits (u[j+n]...u[j]) should be kept positive; if the result of
2162 static const char Digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
2187 *--BufPtr = Digits[N % Radix];
2210 // We insert the digits backward, then reverse them to get the right order.
2223 Str.push_back(Digits[Digit]);
2235 Str.push_back(Digits[Digit]);
2240 // Reverse the digits before returning.