Home
last modified time | relevance | path

Searched refs:firstNonZeroDigit (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/math/
DBitLevel.java230 int firstNonZeroDigit = val.getFirstNonzeroDigit(); in flipBit() local
231 if (intCount > firstNonZeroDigit) { in flipBit()
233 } else if (intCount < firstNonZeroDigit) { in flipBit()
235 for (i=intCount + 1; i < firstNonZeroDigit; i++) { in flipBit()
DBigInteger.java560 int firstNonZeroDigit = getFirstNonzeroDigit(); in testBit() local
561 if (intCount < firstNonZeroDigit) { in testBit()
563 } else if (firstNonZeroDigit == intCount) { in testBit()