Home | History | Annotate | Download | only in libtommath

Lines Matching refs:x0x0

27   mp_int  x0, x1, t1, t2, x0x0, x1x1;
49 if (mp_init_size (&x0x0, B * 2) != MP_OKAY)
52 goto X0X0;
78 if (mp_sqr (&x0, &x0x0) != MP_OKAY)
79 goto X1X1; /* x0x0 = x0*x0 */
90 if (s_mp_add (&x0x0, &x1x1, &t2) != MP_OKAY)
91 goto X1X1; /* t2 = x0x0 + x1x1 */
93 goto X1X1; /* t1 = (x1+x0)**2 - (x0x0 + x1x1) */
97 goto X1X1; /* t1 = (x0x0 + x1x1 - (x1-x0)*(x1-x0))<<B */
101 if (mp_add (&x0x0, &t1, &t1) != MP_OKAY)
102 goto X1X1; /* t1 = x0x0 + t1 */
104 goto X1X1; /* t1 = x0x0 + t1 + x1x1 */
109 X0X0:mp_clear (&x0x0);