Home
last modified time | relevance | path

Searched refs:mp_mul (Results 1 – 2 of 2) sorted by relevance

/external/wpa_supplicant_8/src/tls/
Dlibtommath.c493 static int mp_mul (mp_int * a, mp_int * b, mp_int * c) in mp_mul() function
529 #error mp_mul could fail in mp_mul()
549 if ((res = mp_mul (a, b, &t)) != MP_OKAY) { in mp_mulmod()
1984 if ((err = mp_mul (&M[x - 1], &M[1], &M[x])) != MP_OKAY) { in s_mp_exptmod()
2059 if ((err = mp_mul (&res, &M[bitbuf], &res)) != MP_OKAY) { in s_mp_exptmod()
2087 if ((err = mp_mul (&res, &M[1], &res)) != MP_OKAY) { in s_mp_exptmod()
2169 if ((res = mp_mul(&q, d, &q)) != MP_OKAY) { in mp_reduce_2k_l()
2273 if ((res = mp_mul (&q, mu, &q)) != MP_OKAY) { in mp_reduce()
3112 if ((err = mp_mul (&M[x - 1], &M[1], &M[x])) != MP_OKAY) { in mp_exptmod_fast()
3181 if ((err = mp_mul (&res, &M[bitbuf], &res)) != MP_OKAY) { in mp_exptmod_fast()
[all …]
Dbignum.c179 if (mp_mul((mp_int *) a, (mp_int *) b, (mp_int *) c) != MP_OKAY) { in bignum_mul()