Home | History | Annotate | Download | only in pre_gen

Lines Matching full:x0y0

4143   mp_int  x0, x1, y0, y1, t1, x0y0, x1y1;
4168 if (mp_init_size (&x0y0, B * 2) != MP_OKAY)
4171 goto X0Y0;
4212 /* now calc the products x0y0 and x1y1 */
4214 if (mp_mul (&x0, &y0, &x0y0) != MP_OKAY)
4215 goto X1Y1; /* x0y0 = x0*y0 */
4227 /* add x0y0 */
4228 if (mp_add (&x0y0, &x1y1, &x0) != MP_OKAY)
4229 goto X1Y1; /* t2 = x0y0 + x1y1 */
4231 goto X1Y1; /* t1 = (x1+x0)*(y1+y0) - (x1y1 + x0y0) */
4235 goto X1Y1; /* t1 = (x0y0 + x1y1 - (x1-x0)*(y1-y0))<<B */
4239 if (mp_add (&x0y0, &t1, &t1) != MP_OKAY)
4240 goto X1Y1; /* t1 = x0y0 + t1 */
4242 goto X1Y1; /* t1 = x0y0 + t1 + x1y1 */
4248 X0Y0:mp_clear (&x0y0);
4354 /* add x0y0 */