/external/dropbear/libtommath/ |
D | bn_mp_cmp.c | 34 return mp_cmp_mag(b, a); in mp_cmp() 36 return mp_cmp_mag(a, b); in mp_cmp()
|
D | bn_mp_div.c | 32 if (mp_cmp_mag (a, b) == MP_LT) { in mp_div() 114 if (mp_cmp_mag (a, b) == MP_LT) { in mp_div() 227 } while (mp_cmp_mag(&t1, &t2) == MP_GT); in mp_div()
|
D | bn_mp_cmp_mag.c | 19 int mp_cmp_mag (mp_int * a, mp_int * b) in mp_cmp_mag() function
|
D | bn_mp_add.c | 38 if (mp_cmp_mag (a, b) == MP_LT) { in mp_add()
|
D | bn_mp_sub.c | 39 if (mp_cmp_mag (a, b) != MP_LT) { in mp_sub()
|
D | bn_mp_montgomery_calc_normalization.c | 46 if (mp_cmp_mag (a, b) != MP_LT) { in mp_montgomery_calc_normalization()
|
D | bn_mp_reduce_2k.c | 47 if (mp_cmp_mag(a, n) != MP_LT) { in mp_reduce_2k()
|
D | bn_mp_reduce_2k_l.c | 48 if (mp_cmp_mag(a, n) != MP_LT) { in mp_reduce_2k_l()
|
D | bn_mp_lcm.c | 35 if (mp_cmp_mag(a, b) == MP_LT) { in mp_lcm()
|
D | bn_mp_dr_reduce.c | 84 if (mp_cmp_mag (x, n) != MP_LT) { in mp_dr_reduce()
|
D | bn_mp_is_square.c | 101 *ret = (mp_cmp_mag(&t,arg) == MP_EQ) ? MP_YES : MP_NO; in mp_is_square()
|
D | bn_mp_sqrt.c | 68 } while (mp_cmp_mag(&t1,&t2) == MP_GT); in mp_sqrt()
|
D | bn_mp_montgomery_reduce.c | 108 if (mp_cmp_mag (x, n) != MP_LT) { in mp_montgomery_reduce()
|
D | bn_mp_gcd.c | 75 if (mp_cmp_mag(&u, &v) == MP_GT) { in mp_gcd()
|
D | bn_fast_mp_montgomery_reduce.c | 163 if (mp_cmp_mag (x, n) != MP_LT) { in fast_mp_montgomery_reduce()
|
D | bn_mp_invmod_slow.c | 159 while (mp_cmp_mag(&C, b) != MP_LT) { in mp_invmod_slow()
|
D | tommath.h | 308 int mp_cmp_mag(mp_int *a, mp_int *b);
|
D | changes.txt | 241 -- removed call to mp_cmp in inner loop of mp_div and put mp_cmp_mag in its place :-) 385 -- Added mp_cmp_mag, mp_neg, mp_abs and mp_radix_size that were missing.
|
D | bn.tex | 815 int mp_cmp_mag(mp_int * a, mp_int * b); 843 switch(mp_cmp_mag(&number1, &number2)) \{
|
/external/wpa_supplicant_6/wpa_supplicant/src/tls/ |
D | libtommath.c | 162 static int mp_cmp_mag(mp_int * a, mp_int * b); 430 if (mp_cmp_mag (a, b) == MP_LT) { in mp_add() 462 if (mp_cmp_mag (a, b) != MP_LT) { in mp_sub() 684 return mp_cmp_mag(b, a); in mp_cmp() 686 return mp_cmp_mag(a, b); in mp_cmp() 895 while (mp_cmp_mag(&C, b) != MP_LT) { in mp_invmod_slow() 911 static int mp_cmp_mag (mp_int * a, mp_int * b) in mp_cmp_mag() function 1605 if (mp_cmp_mag (a, b) == MP_LT) { in mp_div() 1687 if (mp_cmp_mag (a, b) == MP_LT) { in mp_div() 1800 } while (mp_cmp_mag(&t1, &t2) == MP_GT); in mp_div() [all …]
|
/external/wpa_supplicant_8/src/tls/ |
D | libtommath.c | 162 static int mp_cmp_mag(mp_int * a, mp_int * b); 430 if (mp_cmp_mag (a, b) == MP_LT) { in mp_add() 462 if (mp_cmp_mag (a, b) != MP_LT) { in mp_sub() 684 return mp_cmp_mag(b, a); in mp_cmp() 686 return mp_cmp_mag(a, b); in mp_cmp() 895 while (mp_cmp_mag(&C, b) != MP_LT) { in mp_invmod_slow() 911 static int mp_cmp_mag (mp_int * a, mp_int * b) in mp_cmp_mag() function 1605 if (mp_cmp_mag (a, b) == MP_LT) { in mp_div() 1687 if (mp_cmp_mag (a, b) == MP_LT) { in mp_div() 1800 } while (mp_cmp_mag(&t1, &t2) == MP_GT); in mp_div() [all …]
|
/external/dropbear/libtommath/pre_gen/ |
D | mpi.c | 367 if (mp_cmp_mag (x, n) != MP_LT) { in fast_mp_montgomery_reduce() 848 if (mp_cmp_mag (a, b) == MP_LT) { in mp_add() 1257 return mp_cmp_mag(b, a); in mp_cmp() 1259 return mp_cmp_mag(a, b); in mp_cmp() 1337 int mp_cmp_mag (mp_int * a, mp_int * b) in mp_cmp_mag() function 1587 if (mp_cmp_mag (a, b) == MP_LT) { in mp_div() 1669 if (mp_cmp_mag (a, b) == MP_LT) { in mp_div() 1782 } while (mp_cmp_mag(&t1, &t2) == MP_GT); in mp_div() 2352 if (mp_cmp_mag (x, n) != MP_LT) { in mp_dr_reduce() 3230 if (mp_cmp_mag(&u, &v) == MP_GT) { in mp_gcd() [all …]
|
/external/dropbear/libtommath/mtest/ |
D | mpi.h | 163 int mp_cmp_mag(mp_int *a, mp_int *b);
|
D | mpi.c | 1845 int mp_cmp_mag(mp_int *a, mp_int *b) in mp_cmp_mag() function
|
/external/dropbear/libtommath/demo/ |
D | demo.c | 138 if (mp_cmp_mag(&b, &a) != MP_EQ) { in main() 509 if (mp_cmp_mag(&c, &d) != MP_EQ) { in main()
|