Lines Matching refs:t1
1717 mp_int q, x, y, t1, t2; in mp_div() local
1743 if ((res = mp_init (&t1)) != MP_OKAY) { in mp_div()
1826 mp_zero (&t1); in mp_div()
1827 t1.dp[0] = (t - 1 < 0) ? 0 : y.dp[t - 1]; in mp_div()
1828 t1.dp[1] = y.dp[t]; in mp_div()
1829 t1.used = 2; in mp_div()
1830 if ((res = mp_mul_d (&t1, q.dp[i - t - 1], &t1)) != MP_OKAY) { in mp_div()
1839 } while (mp_cmp_mag(&t1, &t2) == MP_GT); in mp_div()
1842 if ((res = mp_mul_d (&y, q.dp[i - t - 1], &t1)) != MP_OKAY) { in mp_div()
1846 if ((res = mp_lshd (&t1, i - t - 1)) != MP_OKAY) { in mp_div()
1850 if ((res = mp_sub (&x, &t1, &x)) != MP_OKAY) { in mp_div()
1856 if ((res = mp_copy (&y, &t1)) != MP_OKAY) { in mp_div()
1859 if ((res = mp_lshd (&t1, i - t - 1)) != MP_OKAY) { in mp_div()
1862 if ((res = mp_add (&x, &t1, &x)) != MP_OKAY) { in mp_div()
1893 LBL_T1:mp_clear (&t1); in mp_div()