Home
last modified time | relevance | path

Searched refs:mp_mul_d (Results 1 – 18 of 18) sorted by relevance

/external/dropbear/libtommath/
Dbn_mp_fread.c47 if ((err = mp_mul_d(a, radix, a)) != MP_OKAY) { in mp_fread()
Dbn_mp_reduce_2k.c37 if ((res = mp_mul_d(&q, d, &q)) != MP_OKAY) { in mp_reduce_2k()
Dbn_mp_read_radix.c63 if ((res = mp_mul_d (a, (mp_digit) radix, a)) != MP_OKAY) { in mp_read_radix()
Dbn_mp_mul_d.c20 mp_mul_d (mp_int * a, mp_digit b, mp_int * c) in mp_mul_d() function
Dbn_mp_div.c218 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()
Dbn_mp_n_root.c83 if ((res = mp_mul_d (&t3, b, &t3)) != MP_OKAY) { in mp_n_root()
Dbn_mp_toom_sqr.c164 if ((res = mp_mul_d(&w2, 3, &w2)) != MP_OKAY) { in mp_toom_sqr()
Dbn_mp_toom_mul.c220 if ((res = mp_mul_d(&w2, 3, &w2)) != MP_OKAY) { in mp_toom_mul()
Dchanges.txt47 -- 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
Dtommath.h340 int mp_mul_d(mp_int *a, mp_digit b, mp_int *c);
Dbn.tex1824 int mp_mul_d(mp_int *a, mp_digit b, mp_int *c);
/external/dropbear/
Dgendss.c102 if (mp_mul_d(key->q, 2, &temp2q) != MP_OKAY) { in getp()
/external/dropbear/libtomcrypt/src/headers/
Dtomcrypt_math.h475 #define mp_mul_d(a, b, c) ltc_mp.muli(a, b, c) macro
/external/dropbear/libtommath/mtest/
Dmpi.h109 mp_err mp_mul_d(mp_int *a, mp_digit d, mp_int *b);
Dmpi.c613 mp_err mp_mul_d(mp_int *a, mp_digit d, mp_int *b) in mp_mul_d() function
/external/dropbear/libtomcrypt/src/math/
Dltm_desc.c251 return mpi_to_ltc_error(mp_mul_d(a, b, c)); in muli()
/external/dropbear/libtommath/pre_gen/
Dmpi.c1773 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/
Dtv_gen.c691 mp_mul_d(k, 3, k); in ecc_gen()