Lines Matching full:compute
215 * Compute z^2 (in t1).
220 * Compute x-z^2 (in t2) and then x+z^2 (in t1).
227 * Compute m = 3*(x+z^2)*(x-z^2) (in t1).
235 * Compute s = 4*x*y^2 (in t2) and 2*y^2 (in t3).
243 * Compute x' = m^2 - 2*s.
250 * Compute z' = 2*y*z.
257 * Compute y' = m*(s - x') - 8*y^4. Note that we already have
321 * Compute u1 = x1*z2^2 (in t1) and s1 = y1*z2^3 (in t3).
329 * Compute u2 = x2*z1^2 (in t2) and s2 = y2*z1^3 (in t4).
337 * Compute h = u2 - u1 (in t2) and r = s2 - s1 (in t4).
348 * Compute u1*h^2 (in t6) and h^3 (in t5).
355 * Compute x3 = r^2 - h^3 - 2*u1*h^2.
364 * Compute y3 = r*(u1*h^2 - x3) - s1*h^3.
372 * Compute z3 = h*z1*z2.
395 /* Compute x^3 in t1. */
407 /* Compute y^2 in t2. */
429 /* Compute z^3 in t2. */
437 /* Compute y. */
441 /* Compute (1/z^2) in t3. */
444 /* Compute x. */
790 * We want to compute P+Q. Since the base points A and B are distinct in api_muladd()