Home | History | Annotate | Download | only in tls

Lines Matching refs:ta

1596    mp_int ta, tb, tq, q;
1618 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL) != MP_OKAY)) {
1625 if (((res = mp_abs(a, &ta)) != MP_OKAY) ||
1633 if (mp_cmp(&tb, &ta) != MP_GT) {
1634 if (((res = mp_sub(&ta, &tb, &ta)) != MP_OKAY) ||
1645 /* now q == quotient and ta == remainder */
1653 mp_exch(d, &ta);
1657 mp_clear_multi(&ta, &tb, &tq, &q, NULL);