/external/dropbear/libtommath/ |
D | bn_mp_reduce_setup.c | 25 if ((res = mp_2expt (a, b->used * 2 * DIGIT_BIT)) != MP_OKAY) { in mp_reduce_setup()
|
D | bn_mp_2expt.c | 24 mp_2expt (mp_int * a, int b) in mp_2expt() function
|
D | bn_mp_reduce_2k_setup_l.c | 28 if ((res = mp_2expt(&tmp, mp_count_bits(a))) != MP_OKAY) { in mp_reduce_2k_setup_l()
|
D | bn_mp_reduce_2k_setup.c | 29 if ((res = mp_2expt(&tmp, p)) != MP_OKAY) { in mp_reduce_2k_setup()
|
D | bn_mp_montgomery_calc_normalization.c | 32 if ((res = mp_2expt (a, (b->used - 1) * DIGIT_BIT + bits - 1)) != MP_OKAY) { in mp_montgomery_calc_normalization()
|
D | tommath.h | 276 int mp_2expt(mp_int *a, int b);
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/integer/ |
D | der_decode_integer.c | 95 if (mp_2expt(tmp, mp_count_bits(num)) != CRYPT_OK || mp_sub(num, tmp, num) != CRYPT_OK) { in der_decode_integer()
|
D | der_encode_integer.c | 110 if (mp_2expt(tmp, y) != CRYPT_OK || mp_add(tmp, num, tmp) != CRYPT_OK) { in der_encode_integer()
|
/external/dropbear/libtommath/etc/ |
D | 2kprime.c | 21 mp_2expt(&q, sizes[x]); in main()
|
D | mersenne.c | 25 if ((res = mp_2expt(&n, s)) != MP_OKAY) { in is_mersenne()
|
/external/dropbear/libtommath/demo/ |
D | demo.c | 257 mp_2expt(&a, cnt); in main() 342 mp_2expt(&a, 1024); in main() 347 mp_2expt(&a, 2048); in main()
|
/external/dropbear/libtommath/mtest/ |
D | mpi.h | 136 mp_err mp_2expt(mp_int *a, mp_digit k);
|
D | mpi.c | 1335 mp_err mp_2expt(mp_int *a, mp_digit k) in mp_2expt() function
|
/external/dropbear/libtomcrypt/src/headers/ |
D | tomcrypt_math.h | 462 #define mp_2expt(a, b) ltc_mp.twoexpt(a, b) macro
|
/external/wpa_supplicant_6/wpa_supplicant/src/tls/ |
D | libtommath.c | 169 static int mp_2expt(mp_int * a, int b); 2184 if ((res = mp_2expt(&tmp, mp_count_bits(a))) != MP_OKAY) { in mp_reduce_2k_setup_l() 2203 static int mp_2expt (mp_int * a, int b) in mp_2expt() function 2232 if ((res = mp_2expt (a, b->used * 2 * DIGIT_BIT)) != MP_OKAY) { in mp_reduce_setup() 2905 if ((res = mp_2expt (a, (b->used - 1) * DIGIT_BIT + bits - 1)) != MP_OKAY) { in mp_montgomery_calc_normalization()
|
/external/wpa_supplicant_8/src/tls/ |
D | libtommath.c | 169 static int mp_2expt(mp_int * a, int b); 2184 if ((res = mp_2expt(&tmp, mp_count_bits(a))) != MP_OKAY) { in mp_reduce_2k_setup_l() 2203 static int mp_2expt (mp_int * a, int b) in mp_2expt() function 2232 if ((res = mp_2expt (a, b->used * 2 * DIGIT_BIT)) != MP_OKAY) { in mp_reduce_setup() 2905 if ((res = mp_2expt (a, (b->used - 1) * DIGIT_BIT + bits - 1)) != MP_OKAY) { in mp_montgomery_calc_normalization()
|
/external/dropbear/libtomcrypt/src/math/ |
D | ltm_desc.c | 162 return mpi_to_ltc_error(mp_2expt(a, n)); in twoexpt()
|
/external/dropbear/libtommath/pre_gen/ |
D | mpi.c | 735 mp_2expt (mp_int * a, int b) in mp_2expt() function 4699 if ((res = mp_2expt (a, (b->used - 1) * DIGIT_BIT + bits - 1)) != MP_OKAY) { in mp_montgomery_calc_normalization() 6820 if ((res = mp_2expt(&tmp, p)) != MP_OKAY) { in mp_reduce_2k_setup() 6870 if ((res = mp_2expt(&tmp, mp_count_bits(a))) != MP_OKAY) { in mp_reduce_2k_setup_l() 7019 if ((res = mp_2expt (a, b->used * 2 * DIGIT_BIT)) != MP_OKAY) { in mp_reduce_setup()
|