HomeSort by relevance Sort by last modified time
    Searched refs:MP_LT (Results 1 - 25 of 28) sorted by null

1 2

  /external/dropbear/libtommath/
bn_mp_cmp_d.c 23 return MP_LT;
35 return MP_LT;
bn_mp_cmp_mag.c 30 return MP_LT;
46 return MP_LT;
bn_mp_cmp.c 25 return MP_LT;
bn_mp_add.c 38 if (mp_cmp_mag (a, b) == MP_LT) {
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_reduce.c 76 if (mp_cmp_d (x, 0) == MP_LT) {
85 while (mp_cmp (x, m) != 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_invmod_slow.c 111 if (mp_cmp (&u, &v) != MP_LT) {
152 while (mp_cmp_d(&C, 0) == MP_LT) {
159 while (mp_cmp_mag(&C, b) != MP_LT) {
bn_mp_prime_next_prime.c 38 if (mp_cmp_d(a, ltm_prime_tab[PRIME_SIZE-1]) == MP_LT) {
41 if (mp_cmp_d(a, ltm_prime_tab[x]) != MP_LT) {
bn_mp_dr_reduce.c 84 if (mp_cmp_mag (x, n) != MP_LT) {
bn_mp_montgomery_reduce.c 108 if (mp_cmp_mag (x, n) != MP_LT) {
bn_fast_mp_montgomery_reduce.c 163 if (mp_cmp_mag (x, n) != MP_LT) {
bn_mp_div.c 32 if (mp_cmp_mag (a, b) == MP_LT) {
114 if (mp_cmp_mag (a, b) == MP_LT) {
174 while (mp_cmp (&x, &y) != MP_LT) {
bn_fast_mp_invmod.c 97 if (mp_cmp (&u, &v) != MP_LT) {
  /external/wpa_supplicant_8/src/tls/
libtommath.c 94 #define MP_LT -1 /* less than */
443 if (mp_cmp_mag (a, b) == MP_LT) {
475 if (mp_cmp_mag (a, b) != MP_LT) {
691 return MP_LT;
712 return MP_LT;
724 return MP_LT;
863 if (mp_cmp (&u, &v) != MP_LT) {
904 while (mp_cmp_d(&C, 0) == MP_LT) {
911 while (mp_cmp_mag(&C, b) != MP_LT) {
938 return MP_LT;
    [all...]
  /external/dropbear/
random.c 237 } while (mp_cmp(rand, max) != MP_LT);
dss.c 198 if (mp_cmp(&val1, key->q) != MP_LT) {
219 if (mp_cmp(&val1, key->q) != MP_LT) {
rsa.c 244 if (mp_cmp(&rsa_s, key->n) != MP_LT) {
  /external/dropbear/libtommath/pre_gen/
mpi.c 149 if (mp_cmp (&u, &v) != MP_LT) {
367 if (mp_cmp_mag (x, n) != MP_LT) {
848 if (mp_cmp_mag (a, b) == MP_LT) {
1248 return MP_LT;
1293 return MP_LT;
1305 return MP_LT;
    [all...]
  /external/dropbear/libtomcrypt/src/math/
ltm_desc.c 126 case MP_LT: return LTC_MP_LT;
139 case MP_LT: return LTC_MP_LT;
  /external/dropbear/libtommath/mtest/
mpi.h 17 #define MP_LT -1
mpi.c 85 #define MP_LT -1
    [all...]

Completed in 225 milliseconds

1 2