Searched refs:tb (Results 1 – 1 of 1) sorted by relevance
/hal_espressif-latest/components/wpa_supplicant/src/tls/ |
D | libtommath.h | 1634 mp_int ta, tb, tq, q; in mp_div() local 1656 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL)) != MP_OKAY) { in mp_div() 1664 ((res = mp_abs(b, &tb)) != MP_OKAY) || in mp_div() 1665 ((res = mp_mul_2d(&tb, n, &tb)) != MP_OKAY) || in mp_div() 1671 if (mp_cmp(&tb, &ta) != MP_GT) { in mp_div() 1672 if (((res = mp_sub(&ta, &tb, &ta)) != MP_OKAY) || in mp_div() 1677 if (((res = mp_div_2d(&tb, 1, &tb, NULL)) != MP_OKAY) || in mp_div() 1695 mp_clear_multi(&ta, &tb, &tq, &q, NULL); in mp_div()
|