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

  /dalvik/libcore/math/src/main/java/java/math/
BitLevel.java 337 int firstNonZeroDigit = val.getFirstNonzeroDigit();
338 if (intCount > firstNonZeroDigit) {
340 } else if (intCount < firstNonZeroDigit) {
342 for (i=intCount + 1; i < firstNonZeroDigit; i++) {
BigInteger.java 165 private transient int firstNonzeroDigit = -2;
627 int firstNonZeroDigit = getFirstNonzeroDigit();
628 if ( intCount < firstNonZeroDigit ){
630 }else if( firstNonZeroDigit == intCount ){
    [all...]

Completed in 13 milliseconds