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

1 2

  /external/dropbear/libtommath/
bn_mp_prime_miller_rabin.c 70 if (mp_cmp_d (&y, 1) != MP_EQ && mp_cmp (&y, &n1) != MP_EQ) {
73 while ((j <= (s - 1)) && mp_cmp (&y, &n1) != MP_EQ) {
79 if (mp_cmp_d (&y, 1) == MP_EQ) {
87 if (mp_cmp (&y, &n1) != MP_EQ) {
bn_mp_cmp_d.c 37 return MP_EQ;
bn_mp_cmp_mag.c 49 return MP_EQ;
bn_mp_prime_fermat.c 50 if (mp_cmp (&t, b) == MP_EQ) {
bn_mp_jacobi.c 39 if (mp_cmp_d (a, 1) == MP_EQ) {
82 if (mp_cmp_d (&a1, 1) == MP_EQ) {
bn_mp_fread.c 56 if (mp_cmp_d(a, 0) != MP_EQ) {
bn_mp_prime_is_prime.c 40 if (mp_cmp_d(a, ltm_prime_tab[ix]) == MP_EQ) {
bn_mp_is_square.c 101 *ret = (mp_cmp_mag(&t,arg) == MP_EQ) ? MP_YES : MP_NO;
bn_mp_n_root.c 95 } while (mp_cmp (&t1, &t2) != MP_EQ);
bn_fast_mp_invmod.c 125 if (mp_cmp_d (&v, 1) != MP_EQ) {
bn_mp_prime_next_prime.c 65 if (mp_cmp_d(a, 1) == MP_EQ) {
bn_mp_invmod_slow.c 146 if (mp_cmp_d (&v, 1) != MP_EQ) {
tommath.h 136 #define MP_EQ 0 /* equal to */
  /external/dropbear/libtommath/etc/
mont.c 32 if (mp_cmp(&pp, &p) != MP_EQ) {
pprime.c 260 if (mp_cmp_d (&y, 1) != MP_EQ)
273 if (mp_cmp_d (&y, 1) == MP_EQ)
281 if (mp_cmp_d (&y, 1) == MP_EQ)
290 if (mp_cmp_d (&y, 1) == MP_EQ)
298 if (mp_cmp_d (&y, 1) == MP_EQ)
307 if (mp_cmp_d (&y, 1) == MP_EQ)
316 if (mp_cmp_d (&y, 1) != MP_EQ)
  /external/dropbear/libtommath/demo/
demo.c 94 if (mp_cmp(&c, &d) != MP_EQ) {
138 if (mp_cmp_mag(&b, &a) != MP_EQ) {
327 if (mp_cmp(&b, &c) != MP_EQ) {
375 if (mp_cmp(&b, &c) != MP_EQ) {
446 if (mp_cmp(&a, &b) != MP_EQ) {
466 if (mp_cmp(&a, &b) != MP_EQ) {
482 if (mp_cmp(&c, &d) != MP_EQ) {
497 if (mp_cmp(&c, &d) != MP_EQ) {
509 if (mp_cmp_mag(&c, &d) != MP_EQ) {
526 if (mp_cmp(&c, &d) != MP_EQ) {
    [all...]
timing.c 292 } while (mp_cmp_d(&c, 1) != MP_EQ);
304 if (mp_cmp_d(&d, 1) != MP_EQ) {
  /external/dropbear/libtommath/mtest/
mpi.c 86 #define MP_EQ 0
706 if(s_mp_cmp_d(q, 0) == MP_EQ)
844 if(s_mp_cmp_d(b, 0) == MP_EQ)
1070 if(sgn == MP_ZPOS || s_mp_cmp_d(c, 0) == MP_EQ)
1151 if(mp_cmp_z(b) == MP_EQ)
1203 if(s_mp_cmp_d(&qtmp, 0) == MP_EQ)
1205 if(s_mp_cmp_d(&rtmp, 0) == MP_EQ)
1467 if(mp_cmp_d(a, 0) == MP_EQ || mp_cmp_d(a, 1) == MP_EQ)
1495 if(mp_cmp_z(&t) == MP_EQ)
    [all...]
mpi.h 18 #define MP_EQ 0
  /external/dropbear/
genrsa.c 129 } while (mp_cmp_d(&temp_gcd, 1) != MP_EQ); /* while gcd(p-1, e) != 1 */
dss.c 247 if (mp_cmp(&val2, &val1) == MP_EQ) {
rsa.c 257 if (mp_cmp(&rsa_em, &rsa_mdash) == MP_EQ) {
  /external/dropbear/libtomcrypt/src/math/
ltm_desc.c 127 case MP_EQ: return LTC_MP_EQ;
140 case MP_EQ: return LTC_MP_EQ;
  /external/dropbear/libtommath/pre_gen/
mpi.c 177 if (mp_cmp_d (&v, 1) != MP_EQ) {
1307 return MP_EQ;
    [all...]
  /external/wpa_supplicant_8/src/tls/
libtommath.c 95 #define MP_EQ 0 /* equal to */
726 return MP_EQ;
898 if (mp_cmp_d (&v, 1) != MP_EQ) {
957 return MP_EQ;
    [all...]

Completed in 209 milliseconds

1 2