HomeSort by: relevance | last modified time | path
    Searched defs:mp_mul (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
bn_mp_mul.c 21 int mp_mul (mp_int * a, mp_int * b, mp_int * c) function
  /src/external/bsd/wpa/dist/src/tls/
libtommath.c 485 static int mp_mul (mp_int * a, mp_int * b, mp_int * c) function
521 #error mp_mul could fail
541 if ((res = mp_mul (a, b, &t)) != MP_OKAY) {
1976 if ((err = mp_mul (&M[x - 1], &M[1], &M[x])) != MP_OKAY) {
2051 if ((err = mp_mul (&res, &M[bitbuf], &res)) != MP_OKAY) {
2079 if ((err = mp_mul (&res, &M[1], &res)) != MP_OKAY) {
2161 if ((res = mp_mul(&q, d, &q)) != MP_OKAY) {
2265 if ((res = mp_mul (&q, mu, &q)) != MP_OKAY) {
3105 if ((err = mp_mul (&M[x - 1], &M[1], &M[x])) != MP_OKAY) {
3174 if ((err = mp_mul (&res, &M[bitbuf], &res)) != MP_OKAY)
    [all...]
  /src/crypto/external/bsd/netpgp/dist/src/libbn/
bignum.c 101 static int mp_mul(mp_int * a, mp_int * b, mp_int * c);
1920 if ((res = mp_mul(&a0, &b0, &w0)) != MP_OKAY) {
1925 if ((res = mp_mul(&a2, &b2, &w4)) != MP_OKAY) {
1956 if ((res = mp_mul(&tmp1, &tmp2, &w1)) != MP_OKAY) {
1987 if ((res = mp_mul(&tmp1, &tmp2, &w3)) != MP_OKAY) {
2005 if ((res = mp_mul(&tmp1, &tmp2, &w2)) != MP_OKAY) {
2151 * are saved. Note also that the call to mp_mul can end up back
2233 if (mp_mul (&x0, &y0, &x0y0) != MP_OKAY)
2235 if (mp_mul (&x1, &y1, &x1y1) != MP_OKAY)
2243 if (mp_mul (&t1, &x0, &t1) != MP_OKAY
2444 mp_mul(mp_int * a, mp_int * b, mp_int * c) function
    [all...]

Completed in 29 milliseconds