Lines Matching full:compute
216 * Compute z^2 (in t1).
221 * Compute x-z^2 (in t2) and then x+z^2 (in t1).
228 * Compute m = 3*(x+z^2)*(x-z^2) (in t1).
236 * Compute s = 4*x*y^2 (in t2) and 2*y^2 (in t3).
244 * Compute x' = m^2 - 2*s.
251 * Compute z' = 2*y*z.
258 * Compute y' = m*(s - x') - 8*y^4. Note that we already have
322 * Compute u1 = x1*z2^2 (in t1) and s1 = y1*z2^3 (in t3).
330 * Compute u2 = x2*z1^2 (in t2) and s2 = y2*z1^3 (in t4).
338 * Compute h = u2 - u1 (in t2) and r = s2 - s1 (in t4).
349 * Compute u1*h^2 (in t6) and h^3 (in t5).
356 * Compute x3 = r^2 - h^3 - 2*u1*h^2.
365 * Compute y3 = r*(u1*h^2 - x3) - s1*h^3.
373 * Compute z3 = h*z1*z2.
396 /* Compute x^3 in t1. */
408 /* Compute y^2 in t2. */
430 /* Compute z^3 in t2. */
438 /* Compute y. */
442 /* Compute (1/z^2) in t3. */
445 /* Compute x. */
788 * We want to compute P+Q. Since the base points A and B are distinct in api_muladd()