Lines Matching refs:ta
1611 mp_int ta, tb, tq, q;
1633 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL)) != MP_OKAY) {
1640 if (((res = mp_abs(a, &ta)) != MP_OKAY) ||
1648 if (mp_cmp(&tb, &ta) != MP_GT) {
1649 if (((res = mp_sub(&ta, &tb, &ta)) != MP_OKAY) ||
1660 /* now q == quotient and ta == remainder */
1668 mp_exch(d, &ta);
1672 mp_clear_multi(&ta, &tb, &tq, &q, NULL);