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

  /external/dropbear/libtommath/
bn_mp_invmod_slow.c 63 if ((res = mp_div_2 (&u, &u)) != MP_OKAY) {
77 if ((res = mp_div_2 (&A, &A)) != MP_OKAY) {
80 if ((res = mp_div_2 (&B, &B)) != MP_OKAY) {
88 if ((res = mp_div_2 (&v, &v)) != MP_OKAY) {
102 if ((res = mp_div_2 (&C, &C)) != MP_OKAY) {
105 if ((res = mp_div_2 (&D, &D)) != MP_OKAY) {
bn_fast_mp_invmod.c 62 if ((res = mp_div_2 (&u, &u)) != MP_OKAY) {
72 if ((res = mp_div_2 (&B, &B)) != MP_OKAY) {
80 if ((res = mp_div_2 (&v, &v)) != MP_OKAY) {
91 if ((res = mp_div_2 (&D, &D)) != MP_OKAY) {
bn_mp_sqrt.c 53 if ((res = mp_div_2(&t1,&t1)) != MP_OKAY) {
64 if ((res = mp_div_2(&t1,&t1)) != MP_OKAY) {
bn_mp_div_2.c 19 int mp_div_2(mp_int * a, mp_int * b) function
bn_mp_prime_random_ex.c 101 if ((err = mp_div_2(a, a)) != MP_OKAY) { goto error; }
bn_mp_toom_mul.c 183 if ((res = mp_div_2(&w1, &w1)) != MP_OKAY) {
187 if ((res = mp_div_2(&w3, &w3)) != MP_OKAY) {
bn_mp_toom_sqr.c 127 if ((res = mp_div_2(&w1, &w1)) != MP_OKAY) {
131 if ((res = mp_div_2(&w3, &w3)) != MP_OKAY) {
tommath.h 264 int mp_div_2(mp_int *a, mp_int *b);
bn.tex     [all...]
  /external/dropbear/libtommath/etc/
2kprime.c 49 mp_div_2(&p, &p);
drprime.c 38 mp_div_2(&b, &b);
pprime.c 343 mp_div_2 (q, q);
  /external/dropbear/libtomcrypt/src/pk/ecc/
ltc_ecc_projective_dbl_point.c 105 if ((err = mp_div_2(t2, t2)) != CRYPT_OK) { goto done; }
ltc_ecc_projective_add_point.c 179 if ((err = mp_div_2(y, y)) != CRYPT_OK) { goto done; }
  /external/dropbear/libtommath/pre_gen/
mpi.c 114 if ((res = mp_div_2 (&u, &u)) != MP_OKAY) {
124 if ((res = mp_div_2 (&B, &B)) != MP_OKAY) {
132 if ((res = mp_div_2 (&v, &v)) != MP_OKAY) {
143 if ((res = mp_div_2 (&D, &D)) != MP_OKAY) {
1870 int mp_div_2(mp_int * a, mp_int * b) function
    [all...]
  /external/wpa_supplicant_8/src/tls/
libtommath.c 166 static int mp_div_2(mp_int * a, mp_int * b);
815 if ((res = mp_div_2 (&u, &u)) != MP_OKAY) {
829 if ((res = mp_div_2 (&A, &A)) != MP_OKAY) {
832 if ((res = mp_div_2 (&B, &B)) != MP_OKAY) {
840 if ((res = mp_div_2 (&v, &v)) != MP_OKAY) {
854 if ((res = mp_div_2 (&C, &C)) != MP_OKAY) {
857 if ((res = mp_div_2 (&D, &D)) != MP_OKAY) {
1335 static int mp_div_2(mp_int * a, mp_int * b) function
    [all...]
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_math.h 478 #define mp_div_2(a, b) ltc_mp.div_2(a, b) macro
  /external/dropbear/libtommath/mtest/
mpi.h 112 mp_err mp_div_2(mp_int *a, mp_int *c);
mtest.c 268 mp_div_2(&a, &b);
mpi.c 731 /* {{{ mp_div_2(a, c) */
734 mp_div_2(a, c)
739 mp_err mp_div_2(mp_int *a, mp_int *c) function
752 } /* end mp_div_2() */
    [all...]
  /external/dropbear/libtomcrypt/src/math/
ltm_desc.c 274 return mpi_to_ltc_error(mp_div_2(a, b));
  /external/dropbear/libtommath/demo/
demo.c 212 mp_div_2(&a, &a);
677 mp_div_2(&a, &c);
  /external/dropbear/
common-kex.c 496 if (mp_div_2(dh_priv, &dh_q) != MP_OKAY) {

Completed in 431 milliseconds