Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/math/
DBigInteger.java1811 BigInteger v0, v1, v2, vm1, vinf, t1, t2, tm1, da1, db1; in multiplyToomCook3() local
1822 vinf = a2.multiply(b2, true); in multiplyToomCook3()
1834 t1 = t1.subtract(tm1).subtract(vinf); in multiplyToomCook3()
1835 t2 = t2.subtract(vinf.shiftLeft(1)); 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
2175 vinf = a2.square(true); in squareToomCook3()
2188 t1 = t1.subtract(tm1).subtract(vinf); in squareToomCook3()
2189 t2 = t2.subtract(vinf.shiftLeft(1)); in squareToomCook3()
2195 …return vinf.shiftLeft(ss).add(t2).shiftLeft(ss).add(t1).shiftLeft(ss).add(tm1).shiftLeft(ss).add(v… in squareToomCook3()