Home | History | Annotate | Download | only in pre_gen

Lines Matching refs:ta

1578    mp_int ta, tb, tq, q;
1600 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL) != MP_OKAY)) {
1607 if (((res = mp_abs(a, &ta)) != MP_OKAY) ||
1615 if (mp_cmp(&tb, &ta) != MP_GT) {
1616 if (((res = mp_sub(&ta, &tb, &ta)) != MP_OKAY) ||
1627 /* now q == quotient and ta == remainder */
1635 mp_exch(d, &ta);
1639 mp_clear_multi(&ta, &tb, &tq, &q, NULL);