HomeSort by relevance Sort by last modified time
    Searched refs:firstNonZeroDigit (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/java/math/
BitLevel.java 230 int firstNonZeroDigit = val.getFirstNonzeroDigit();
231 if (intCount > firstNonZeroDigit) {
233 } else if (intCount < firstNonZeroDigit) {
235 for (i=intCount + 1; i < firstNonZeroDigit; i++) {
BigInteger.java 83 private transient int firstNonzeroDigit = -2;
524 int firstNonZeroDigit = getFirstNonzeroDigit();
525 if (intCount < firstNonZeroDigit) {
527 } else if (firstNonZeroDigit == intCount) {
    [all...]

Completed in 41 milliseconds