Searched defs:bitLengthForInt (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/math/
H A DBigInteger.java1443 static int bitLengthForInt(int n) { method in class:BigInteger
1454 int bitsInHighWord = bitLengthForInt(a[0]);
1509 return ((len - 1) << 5) + bitLengthForInt(val[0]);
2404 int magBitLength = ((len - 1) << 5) + bitLengthForInt(mag[0]);
3169 int bitLen = (len == 0 ? 0 : ((len - 1) << 5) + bitLengthForInt(mag[0]));

Completed in 36 milliseconds