Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/math/
DBigInteger.java2589 long baseToPow2 = partToSquare.mag[0] & LONG_MASK; in pow() local
2596 result = result * baseToPow2; in pow()
2600 baseToPow2 = baseToPow2 * baseToPow2; in pow()
3405 BigInteger baseToPow2 = this.mod2(p); in modPow2() local
3415 result = result.multiply(baseToPow2).mod2(p); in modPow2()
3418 baseToPow2 = baseToPow2.square().mod2(p); in modPow2()