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.java1220 int trailingZeroBits = Math.min(getLowestSetBit(), b.getLowestSetBit()); in divideKnuth() local
1221 if (trailingZeroBits >= KNUTH_POW2_THRESH_ZEROS*32) { in divideKnuth()
1224 a.rightShift(trailingZeroBits); in divideKnuth()
1225 b.rightShift(trailingZeroBits); in divideKnuth()
1227 r.leftShift(trailingZeroBits); in divideKnuth()