Home | History | Annotate | Download | only in math

Lines Matching defs:digits

57         int[] digits = val.digits;
63 int highDigit = digits[numberLength - 1];
84 System.arraycopy(digits, 0, temp, 0, numberLength);
91 // divide the array of digits by bigRadix and convert remainders
116 resDigit = digits[i] >> (j << 2) & 0xf;
141 int[] digits = val.digits;
173 // one 32-bit unsigned value may contains 10 decimal digits
178 // inserting necessary scaled digits.
185 int highDigit = digits[0];
204 System.arraycopy(digits, 0, temp, 0, tempLen);
206 // divide the array of digits by bigRadix and convert
325 // one 32-bit unsigned value may contains 10 decimal digits
330 // inserting necessary scaled digits.
422 || ((val.numberLength == 2) && (val.digits[1] > 0))) {
452 val.digits))) {