Home
last modified time | relevance | path

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

/freebsd/contrib/wpa/src/tls/
H A Dlibtommath.c485 static int mp_mul (mp_int * a, mp_int * b, mp_int * c) in mp_mul() function
521 #error mp_mul could fail in mp_mul()
541 if ((res = mp_mul (a, b, &t)) != MP_OKAY) { in mp_mulmod()
1976 if ((err = mp_mul (&M[x - 1], &M[1], &M[x])) != MP_OKAY) { in s_mp_exptmod()
2051 if ((err = mp_mul (&res, &M[bitbuf], &res)) != MP_OKAY) { in s_mp_exptmod()
2079 if ((err = mp_mul (&res, &M[1], &res)) != MP_OKAY) { in s_mp_exptmod()
2161 if ((res = mp_mul(&q, d, &q)) != MP_OKAY) { in mp_reduce_2k_l()
2265 if ((res = mp_mul (&q, mu, &q)) != MP_OKAY) { in mp_reduce()
3105 if ((err = mp_mul (&M[x - 1], &M[1], &M[x])) != MP_OKAY) { in mp_exptmod_fast()
3174 if ((err = mp_mul (&res, &M[bitbuf], &res)) != MP_OKAY) { in mp_exptmod_fast()
[all …]
H A Dbignum.c179 if (mp_mul((mp_int *) a, (mp_int *) b, (mp_int *) c) != MP_OKAY) { in bignum_mul()