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

/libcore/luni/src/main/java/java/math/
H A DBitLevel.java135 /** @see BigInteger#shiftRight(int) */
136 static BigInteger shiftRight(BigInteger source, int count) { method in class:BitLevel
147 shiftRight(resDigits, resLength, source.digits, intCount, count);
185 static boolean shiftRight(int[] result, int resultLen, int[] source, int intCount, int count) { method in class:BitLevel
H A DBigInteger.java465 public BigInteger shiftRight(int n) { method in class:BigInteger
496 return BitLevel.shiftRight(this, -n);

Completed in 35 milliseconds