Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching refs:ta

1538    mp_int ta, tb, tq, q;
1560 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL) != MP_OKAY)) {
1567 if (((res = mp_abs(a, &ta)) != MP_OKAY) ||
1575 if (mp_cmp(&tb, &ta) != MP_GT) {
1576 if (((res = mp_sub(&ta, &tb, &ta)) != MP_OKAY) ||
1587 /* now q == quotient and ta == remainder */
1595 mp_exch(d, &ta);
1599 mp_clear_multi(&ta, &tb, &tq, &q, NULL);