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.java2428 long baseToPow2 = partToSquare.mag[0] & LONG_MASK; in pow() local
2435 result = result * baseToPow2; in pow()
2439 baseToPow2 = baseToPow2 * baseToPow2; in pow()
3203 BigInteger baseToPow2 = this.mod2(p); in modPow2() local
3213 result = result.multiply(baseToPow2).mod2(p); in modPow2()
3216 baseToPow2 = baseToPow2.square().mod2(p); in modPow2()