Searched refs:tm1 (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/java/math/ |
D | BigInteger.java | 1811 BigInteger v0, v1, v2, vm1, vinf, t1, t2, tm1, da1, db1; in multiplyToomCook3() local 1831 tm1 = v1.subtract(vm1).shiftRight(1); in multiplyToomCook3() 1834 t1 = t1.subtract(tm1).subtract(vinf); in multiplyToomCook3() 1836 tm1 = tm1.subtract(t2); in multiplyToomCook3() 1841 …BigInteger result = vinf.shiftLeft(ss).add(t2).shiftLeft(ss).add(t1).shiftLeft(ss).add(tm1).shiftL… in multiplyToomCook3() 2168 BigInteger v0, v1, v2, vm1, vinf, t1, t2, tm1, da1; in squareToomCook3() local 2185 tm1 = v1.subtract(vm1).shiftRight(1); in squareToomCook3() 2188 t1 = t1.subtract(tm1).subtract(vinf); in squareToomCook3() 2190 tm1 = tm1.subtract(t2); in squareToomCook3() 2195 …return vinf.shiftLeft(ss).add(t2).shiftLeft(ss).add(t1).shiftLeft(ss).add(tm1).shiftLeft(ss).add(v… in squareToomCook3()
|