/external/dropbear/libtommath/ |
D | bn_mp_fread.c | 47 if ((err = mp_mul_d(a, radix, a)) != MP_OKAY) { in mp_fread()
|
D | bn_mp_reduce_2k.c | 37 if ((res = mp_mul_d(&q, d, &q)) != MP_OKAY) { in mp_reduce_2k()
|
D | bn_mp_read_radix.c | 63 if ((res = mp_mul_d (a, (mp_digit) radix, a)) != MP_OKAY) { in mp_read_radix()
|
D | bn_mp_mul_d.c | 20 mp_mul_d (mp_int * a, mp_digit b, mp_int * c) in mp_mul_d() function
|
D | bn_mp_div.c | 218 if ((res = mp_mul_d (&t1, q.dp[i - t - 1], &t1)) != MP_OKAY) { in mp_div() 230 if ((res = mp_mul_d (&y, q.dp[i - t - 1], &t1)) != MP_OKAY) { in mp_div()
|
D | bn_mp_n_root.c | 83 if ((res = mp_mul_d (&t3, b, &t3)) != MP_OKAY) { in mp_n_root()
|
D | bn_mp_toom_sqr.c | 164 if ((res = mp_mul_d(&w2, 3, &w2)) != MP_OKAY) { in mp_toom_sqr()
|
D | bn_mp_toom_mul.c | 220 if ((res = mp_mul_d(&w2, 3, &w2)) != MP_OKAY) { in mp_toom_mul()
|
D | changes.txt | 47 -- Fixed overflow in mp_mul_d() [Kevin Kenny] 148 -- Cleaned up mp_mul_d() to be much easier to read and follow. 212 v0.21 -- Fixed bug in mp_mul_d which would not handle sign correctly [would not always forward it] 377 -- mp_mul_d didn't preserve sign
|
D | tommath.h | 340 int mp_mul_d(mp_int *a, mp_digit b, mp_int *c);
|
D | bn.tex | 1824 int mp_mul_d(mp_int *a, mp_digit b, mp_int *c);
|
/external/dropbear/ |
D | gendss.c | 102 if (mp_mul_d(key->q, 2, &temp2q) != MP_OKAY) { in getp()
|
/external/dropbear/libtomcrypt/src/headers/ |
D | tomcrypt_math.h | 475 #define mp_mul_d(a, b, c) ltc_mp.muli(a, b, c) macro
|
/external/dropbear/libtommath/mtest/ |
D | mpi.h | 109 mp_err mp_mul_d(mp_int *a, mp_digit d, mp_int *b);
|
D | mpi.c | 613 mp_err mp_mul_d(mp_int *a, mp_digit d, mp_int *b) in mp_mul_d() function
|
/external/dropbear/libtomcrypt/src/math/ |
D | ltm_desc.c | 251 return mpi_to_ltc_error(mp_mul_d(a, b, c)); in muli()
|
/external/dropbear/libtommath/pre_gen/ |
D | mpi.c | 1773 if ((res = mp_mul_d (&t1, q.dp[i - t - 1], &t1)) != MP_OKAY) { in mp_div() 1785 if ((res = mp_mul_d (&y, q.dp[i - t - 1], &t1)) != MP_OKAY) { in mp_div() 3075 if ((err = mp_mul_d(a, radix, a)) != MP_OKAY) { in mp_fread() 5180 mp_mul_d (mp_int * a, mp_digit b, mp_int * c) in mp_mul_d() function 5370 if ((res = mp_mul_d (&t3, b, &t3)) != MP_OKAY) { in mp_n_root() 6426 if ((res = mp_mul_d (a, (mp_digit) radix, a)) != MP_OKAY) { in mp_read_radix() 6697 if ((res = mp_mul_d(&q, d, &q)) != MP_OKAY) { in mp_reduce_2k() 8040 if ((res = mp_mul_d(&w2, 3, &w2)) != MP_OKAY) { in mp_toom_mul() 8272 if ((res = mp_mul_d(&w2, 3, &w2)) != MP_OKAY) { in mp_toom_sqr()
|
/external/dropbear/libtomcrypt/demos/ |
D | tv_gen.c | 691 mp_mul_d(k, 3, k); in ecc_gen()
|