Lines Matching refs:t1
105 mp_int q, x, y, t1, t2;
131 if ((res = mp_init (&t1)) != MP_OKAY) {
214 mp_zero (&t1);
215 t1.dp[0] = (t - 1 < 0) ? 0 : y.dp[t - 1];
216 t1.dp[1] = y.dp[t];
217 t1.used = 2;
218 if ((res = mp_mul_d (&t1, q.dp[i - t - 1], &t1)) != MP_OKAY) {
227 } while (mp_cmp_mag(&t1, &t2) == MP_GT);
230 if ((res = mp_mul_d (&y, q.dp[i - t - 1], &t1)) != MP_OKAY) {
234 if ((res = mp_lshd (&t1, i - t - 1)) != MP_OKAY) {
238 if ((res = mp_sub (&x, &t1, &x)) != MP_OKAY) {
244 if ((res = mp_copy (&y, &t1)) != MP_OKAY) {
247 if ((res = mp_lshd (&t1, i - t - 1)) != MP_OKAY) {
250 if ((res = mp_add (&x, &t1, &x)) != MP_OKAY) {
283 LBL_T1:mp_clear (&t1);