HomeSort by relevance Sort by last modified time
    Searched refs:mp_cmp_mag (Results 1 - 23 of 23) sorted by null

  /external/dropbear/libtommath/
bn_mp_cmp.c 34 return mp_cmp_mag(b, a);
36 return mp_cmp_mag(a, b);
bn_mp_add.c 38 if (mp_cmp_mag (a, b) == MP_LT) {
bn_mp_cmp_mag.c 19 int mp_cmp_mag (mp_int * a, mp_int * b) function
bn_mp_montgomery_calc_normalization.c 46 if (mp_cmp_mag (a, b) != MP_LT) {
bn_mp_sub.c 39 if (mp_cmp_mag (a, b) != MP_LT) {
bn_mp_lcm.c 35 if (mp_cmp_mag(a, b) == MP_LT) {
bn_mp_reduce_2k.c 47 if (mp_cmp_mag(a, n) != MP_LT) {
bn_mp_reduce_2k_l.c 48 if (mp_cmp_mag(a, n) != MP_LT) {
bn_mp_dr_reduce.c 84 if (mp_cmp_mag (x, n) != MP_LT) {
bn_mp_is_square.c 101 *ret = (mp_cmp_mag(&t,arg) == MP_EQ) ? MP_YES : MP_NO;
bn_mp_montgomery_reduce.c 108 if (mp_cmp_mag (x, n) != MP_LT) {
bn_mp_sqrt.c 68 } while (mp_cmp_mag(&t1,&t2) == MP_GT);
bn_fast_mp_montgomery_reduce.c 163 if (mp_cmp_mag (x, n) != MP_LT) {
bn_mp_gcd.c 75 if (mp_cmp_mag(&u, &v) == MP_GT) {
bn_mp_div.c 32 if (mp_cmp_mag (a, b) == MP_LT) {
114 if (mp_cmp_mag (a, b) == MP_LT) {
227 } while (mp_cmp_mag(&t1, &t2) == MP_GT);
bn_mp_invmod_slow.c 159 while (mp_cmp_mag(&C, b) != MP_LT) {
tommath.h 308 int mp_cmp_mag(mp_int *a, mp_int *b);
bn.tex 815 int mp_cmp_mag(mp_int * a, mp_int * b);
843 switch(mp_cmp_mag(&number1, &number2)) \{
    [all...]
  /external/wpa_supplicant_8/src/tls/
libtommath.c 175 static int mp_cmp_mag(mp_int * a, mp_int * b);
443 if (mp_cmp_mag (a, b) == MP_LT) {
475 if (mp_cmp_mag (a, b) != MP_LT) {
700 return mp_cmp_mag(b, a);
702 return mp_cmp_mag(a, b);
911 while (mp_cmp_mag(&C, b) != MP_LT) {
927 static int mp_cmp_mag (mp_int * a, mp_int * b) function
    [all...]
  /external/dropbear/libtommath/pre_gen/
mpi.c 367 if (mp_cmp_mag (x, n) != MP_LT) {
848 if (mp_cmp_mag (a, b) == MP_LT) {
1257 return mp_cmp_mag(b, a);
1259 return mp_cmp_mag(a, b);
1337 int mp_cmp_mag (mp_int * a, mp_int * b) function
    [all...]
  /external/dropbear/libtommath/mtest/
mpi.h 163 int mp_cmp_mag(mp_int *a, mp_int *b);
mpi.c 1845 int mp_cmp_mag(mp_int *a, mp_int *b) function
    [all...]
  /external/dropbear/libtommath/demo/
demo.c 138 if (mp_cmp_mag(&b, &a) != MP_EQ) {
509 if (mp_cmp_mag(&c, &d) != MP_EQ) {

Completed in 342 milliseconds