Home | History | Annotate | Download | only in libtommath

Lines Matching refs:T1

27   mp_int  x0, x1, t1, t2, x0x0, x1x1;
45 if (mp_init_size (&t1, a->used * 2) != MP_OKAY)
48 goto T1;
84 if (s_mp_add (&x1, &x0, &t1) != MP_OKAY)
85 goto X1X1; /* t1 = x1 - x0 */
86 if (mp_sqr (&t1, &t1) != MP_OKAY)
87 goto X1X1; /* t1 = (x1 - x0) * (x1 - x0) */
92 if (s_mp_sub (&t1, &t2, &t1) != MP_OKAY)
93 goto X1X1; /* t1 = (x1+x0)**2 - (x0x0 + x1x1) */
96 if (mp_lshd (&t1, B) != MP_OKAY)
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 */
103 if (mp_add (&t1, &x1x1, b) != MP_OKAY)
104 goto X1X1; /* t1 = x0x0 + t1 + x1x1 */
111 T1:mp_clear (&t1);