Home
last modified time | relevance | path

Searched refs:pa (Results 1 – 3 of 3) sorted by relevance

/hostap-latest/src/tls/
Dlibtommath.c2336 int res, pa, pb, ix, iy; in s_mp_mul_digs() local
2356 pa = a->used; in s_mp_mul_digs()
2357 for (ix = 0; ix < pa; ix++) { in s_mp_mul_digs()
2420 int olduse, res, pa, ix, iz; in fast_s_mp_mul_digs() local
2432 pa = MIN(digs, a->used + b->used); in fast_s_mp_mul_digs()
2437 for (ix = 0; ix < pa; ix++) { in fast_s_mp_mul_digs()
2470 c->used = pa; in fast_s_mp_mul_digs()
2475 for (ix = 0; ix < pa+1; ix++) { in fast_s_mp_mul_digs()
2523 int res, ix, iy, pa; in s_mp_sqr() local
2527 pa = a->used; in s_mp_sqr()
[all …]
/hostap-latest/wlantest/
Dctrl.c783 struct wlantest_passphrase *p, *pa; in ctrl_add_passphrase() local
832 dl_list_for_each(pa, &wt->passphrase, struct wlantest_passphrase, list) in ctrl_add_passphrase()
834 if (os_strcmp(p->passphrase, pa->passphrase) == 0 && in ctrl_add_passphrase()
835 ether_addr_equal(p->bssid, pa->bssid)) { in ctrl_add_passphrase()
/hostap-latest/src/crypto/
Dcrypto_wolfssl.c1939 ecc_point *pa = (ecc_point *) a, *pb = (ecc_point *) b; in crypto_ec_point_add() local
1969 if (mp_mulmod(pa->x, &mu, modulus, ta->x) != MP_OKAY || in crypto_ec_point_add()
1970 mp_mulmod(pa->y, &mu, modulus, ta->y) != MP_OKAY || in crypto_ec_point_add()
1971 mp_mulmod(pa->z, &mu, modulus, ta->z) != MP_OKAY || in crypto_ec_point_add()
1978 pa = ta; in crypto_ec_point_add()
1982 ret = ecc_projective_add_point(pa, pb, (ecc_point *) c, &e->a, in crypto_ec_point_add()