/external/dropbear/libtommath/ |
bn_mp_fread.c | 47 if ((err = mp_mul_d(a, radix, a)) != MP_OKAY) {
|
bn_mp_mul_d.c | 20 mp_mul_d (mp_int * a, mp_digit b, mp_int * c) function
|
bn_mp_read_radix.c | 63 if ((res = mp_mul_d (a, (mp_digit) radix, a)) != MP_OKAY) {
|
bn_mp_reduce_2k.c | 37 if ((res = mp_mul_d(&q, d, &q)) != MP_OKAY) {
|
bn_mp_n_root.c | 83 if ((res = mp_mul_d (&t3, b, &t3)) != MP_OKAY) {
|
bn_mp_div.c | 218 if ((res = mp_mul_d (&t1, q.dp[i - t - 1], &t1)) != MP_OKAY) { 230 if ((res = mp_mul_d (&y, q.dp[i - t - 1], &t1)) != MP_OKAY) {
|
bn_mp_toom_mul.c | 220 if ((res = mp_mul_d(&w2, 3, &w2)) != MP_OKAY) {
|
bn_mp_toom_sqr.c | 164 if ((res = mp_mul_d(&w2, 3, &w2)) != MP_OKAY) {
|
tommath.h | 340 int mp_mul_d(mp_int *a, mp_digit b, mp_int *c);
|
bn.tex | [all...] |
/external/dropbear/ |
gendss.c | 102 if (mp_mul_d(key->q, 2, &temp2q) != MP_OKAY) {
|
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_math.h | 475 #define mp_mul_d(a, b, c) ltc_mp.muli(a, b, c) macro
|
/external/dropbear/libtommath/mtest/ |
mpi.h | 109 mp_err mp_mul_d(mp_int *a, mp_digit d, mp_int *b);
|
mpi.c | 604 /* {{{ mp_mul_d(a, d, b) */ 607 mp_mul_d(a, d, b) 613 mp_err mp_mul_d(mp_int *a, mp_digit d, mp_int *b) function 631 } /* end mp_mul_d() */ [all...] |
/external/dropbear/libtomcrypt/src/math/ |
ltm_desc.c | 251 return mpi_to_ltc_error(mp_mul_d(a, b, c));
|
/external/dropbear/libtommath/pre_gen/ |
mpi.c | 5180 mp_mul_d (mp_int * a, mp_digit b, mp_int * c) function [all...] |
/external/wpa_supplicant_8/src/tls/ |
libtommath.c | 193 static int mp_mul_d (mp_int * a, mp_digit b, mp_int * c); 3346 mp_mul_d (mp_int * a, mp_digit b, mp_int * c) function [all...] |
/external/dropbear/libtomcrypt/demos/ |
tv_gen.c | 691 mp_mul_d(k, 3, k);
|