Home | History | Annotate | Download | only in Support

Lines Matching refs:Digits

203 /// no further borrowing is neeeded or it runs out of "digits" in x.  The result
204 /// is 1 if "borrowing" exhausted the digits in x, or 0 if x was not exhausted.
215 break; // Remaining digits are unchanged so exit early
649 // the first few digits. But, I'm not sure how accurate that could be.
1598 // D1. [Normalize.] Set d = b / (v[n-1] + 1) and multiply all the digits of
1683 // The digits (u[j+n]...u[j]) should be kept positive; if the result of
2206 static const char Digits[] = "0123456789ABCDEF";
2231 *--BufPtr = Digits[N % Radix];
2254 // We insert the digits backward, then reverse them to get the right order.
2267 Str.push_back(Digits[Digit]);
2279 Str.push_back(Digits[Digit]);
2284 // Reverse the digits before returning.