Searched refs:mp_mul_2 (Results 1 - 17 of 17) sorted by relevance
/external/dropbear/libtommath/ |
H A D | bn_mp_montgomery_calc_normalization.c | 43 if ((res = mp_mul_2 (a, a)) != MP_OKAY) {
|
H A D | bn_mp_toom_mul.c | 83 if ((res = mp_mul_2(&a0, &tmp1)) != MP_OKAY) { 89 if ((res = mp_mul_2(&tmp1, &tmp1)) != MP_OKAY) { 96 if ((res = mp_mul_2(&b0, &tmp2)) != MP_OKAY) { 102 if ((res = mp_mul_2(&tmp2, &tmp2)) != MP_OKAY) { 114 if ((res = mp_mul_2(&a2, &tmp1)) != MP_OKAY) { 120 if ((res = mp_mul_2(&tmp1, &tmp1)) != MP_OKAY) { 127 if ((res = mp_mul_2(&b2, &tmp2)) != MP_OKAY) { 133 if ((res = mp_mul_2(&tmp2, &tmp2)) != MP_OKAY) {
|
H A D | bn_mp_mul_2.c | 19 int mp_mul_2(mp_int * a, mp_int * b) function
|
H A D | bn_mp_toom_sqr.c | 60 if ((res = mp_mul_2(&a0, &tmp1)) != MP_OKAY) { 66 if ((res = mp_mul_2(&tmp1, &tmp1)) != MP_OKAY) { 78 if ((res = mp_mul_2(&a2, &tmp1)) != MP_OKAY) { 84 if ((res = mp_mul_2(&tmp1, &tmp1)) != MP_OKAY) {
|
H A D | bn_mp_prime_random_ex.c | 110 if ((err = mp_mul_2(a, a)) != MP_OKAY) { goto error; }
|
H A D | tommath.h | 270 int mp_mul_2(mp_int *a, mp_int *b);
|
H A D | bn.tex | 983 int mp_mul_2(mp_int * a, mp_int * b);
|
/external/dropbear/libtommath/mtest/ |
H A D | mtest.c | 96 mp_mul_2(&a, &a); 267 mp_mul_2(&a, &a); 276 mp_mul_2(&a, &b);
|
H A D | mpi.h | 110 mp_err mp_mul_2(mp_int *a, mp_int *c);
|
H A D | mpi.c | 635 /* {{{ mp_mul_2(a, c) */ 637 mp_err mp_mul_2(mp_int *a, mp_int *c) function 648 } /* end mp_mul_2() */
|
/external/dropbear/libtommath/demo/ |
H A D | timing.c | 247 mp_mul_2(&b, &b);
|
H A D | demo.c | 249 mp_mul_2(&a, &a); 691 mp_mul_2(&a, &c);
|
/external/dropbear/libtommath/etc/ |
H A D | pprime.c | 246 if ((res = mp_mul_2 (&z, &z)) != MP_OKAY) { /* z = 2 * a * b */
|
/external/dropbear/libtommath/pre_gen/ |
H A D | mpi.c | 4710 if ((res = mp_mul_2 (a, a)) != MP_OKAY) { 5004 int mp_mul_2(mp_int * a, mp_int * b) function 6175 if ((err = mp_mul_2(a, a)) != MP_OKAY) { goto error; } 7903 if ((res = mp_mul_2(&a0, &tmp1)) != MP_OKAY) { 7909 if ((res = mp_mul_2(&tmp1, &tmp1)) != MP_OKAY) { 7916 if ((res = mp_mul_2(&b0, &tmp2)) != MP_OKAY) { 7922 if ((res = mp_mul_2(&tmp2, &tmp2)) != MP_OKAY) { 7934 if ((res = mp_mul_2(&a2, &tmp1)) != MP_OKAY) { 7940 if ((res = mp_mul_2(&tmp1, &tmp1)) != MP_OKAY) { 7947 if ((res = mp_mul_2( [all...] |
/external/wpa_supplicant_8/hostapd/src/tls/ |
H A D | libtommath.c | 2848 static int mp_mul_2(mp_int * a, mp_int * b) function 2936 if ((res = mp_mul_2 (a, a)) != MP_OKAY) {
|
/external/wpa_supplicant_8/src/tls/ |
H A D | libtommath.c | 2848 static int mp_mul_2(mp_int * a, mp_int * b) function 2936 if ((res = mp_mul_2 (a, a)) != MP_OKAY) {
|
/external/wpa_supplicant_8/wpa_supplicant/src/tls/ |
H A D | libtommath.c | 2848 static int mp_mul_2(mp_int * a, mp_int * b) function 2936 if ((res = mp_mul_2 (a, a)) != MP_OKAY) {
|
Completed in 402 milliseconds