Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/math/
DMutableBigInteger.java1215 int trailingZeroBits = Math.min(getLowestSetBit(), b.getLowestSetBit()); in divideKnuth() local
1216 if (trailingZeroBits >= KNUTH_POW2_THRESH_ZEROS*32) { in divideKnuth()
1219 a.rightShift(trailingZeroBits); in divideKnuth()
1220 b.rightShift(trailingZeroBits); in divideKnuth()
1222 r.leftShift(trailingZeroBits); in divideKnuth()