HomeSort by relevance Sort by last modified time
    Searched refs:mp_digit (Results 51 - 74 of 74) sorted by null

1 23

  /external/dropbear/libtommath/
bn_mp_cmp_mag.c 22 mp_digit *tmpa, *tmpb;
bn_mp_copy.c 38 register mp_digit *tmpa, *tmpb;
bn_mp_reduce_2k_setup.c 19 int mp_reduce_2k_setup(mp_int *a, mp_digit *d)
bn_mp_add_d.c 20 mp_add_d (mp_int * a, mp_digit b, mp_int * c)
23 mp_digit *tmpa, *tmpc, mu;
bn_mp_prime_next_prime.c 26 mp_digit res_tab[PRIME_SIZE], step, kstep;
132 } while (y == 1 && step < ((((mp_digit)1)<<DIGIT_BIT) - kstep));
140 if (y == 1 && step >= ((((mp_digit)1)<<DIGIT_BIT) - kstep)) {
bn_mp_div_2.c 33 register mp_digit r, rr, *tmpa, *tmpb;
bn_mp_lshd.c 36 register mp_digit *top, *bottom;
bn_mp_reduce_2k.c 19 int mp_reduce_2k(mp_int *a, mp_int *n, mp_digit d)
bn_s_mp_exptmod.c 26 mp_digit buf;
159 y = (buf >> (mp_digit)(DIGIT_BIT - 1)) & 1;
160 buf <<= (mp_digit)1;
bn_mp_exptmod_fast.c 35 mp_digit buf, mp;
42 int (*redux)(mp_int*,mp_int*,mp_digit);
214 y = (mp_digit)(buf >> (DIGIT_BIT - 1)) & 1;
215 buf <<= (mp_digit)1;
bn_mp_is_square.c 44 mp_digit c;
bn_mp_jacobi.c 25 mp_digit residue;
bn_mp_reduce.c 36 if (((unsigned long) um) > (((mp_digit)1) << (DIGIT_BIT - 1))) {
bn_mp_n_root.c 28 int mp_n_root (mp_int * a, mp_digit b, mp_int * c)
bn_mp_karatsuba_mul.c 86 register mp_digit *tmpa, *tmpb, *tmpx, *tmpy;
bn_mp_karatsuba_sqr.c 56 register mp_digit *dst, *src;
bn_prime_tab.c 17 const mp_digit ltm_prime_tab[] = {
bn_mp_div.c 193 q.dp[i - t - 1] = ((((mp_digit)1) << DIGIT_BIT) - 1);
201 q.dp[i - t - 1] = (mp_digit) (tmp & (mp_word) (MP_MASK));
bn.tex 342 mp_digit *dp;
652 void mp_set (mp_int * a, mp_digit b);
742 int mp_init_set (mp_int * a, mp_digit b);
    [all...]
  /external/dropbear/libtommath/pre_gen/
mpi.c 230 int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho)
250 register mp_digit *tmpx;
276 * by casting the value down to a mp_digit. Note this requires
279 register mp_digit mu;
280 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK);
298 register mp_digit *tmpn;
322 register mp_digit *tmpx;
340 * array of mp_word to mp_digit than calling mp_rshd
351 *tmpx++ = (mp_digit)(*_W++ & ((mp_word) MP_MASK));
417 mp_digit W[MP_WARRAY]
    [all...]
  /external/dropbear/libtommath/etc/
mont.c 7 mp_digit mp;
2kprime.c 14 mp_digit z;
  /external/dropbear/libtomcrypt/src/math/
ltm_desc.c 280 mp_digit tmp;
343 *b = XCALLOC(1, sizeof(mp_digit));
347 if ((err = mpi_to_ltc_error(mp_montgomery_setup(a, (mp_digit *)*b))) != CRYPT_OK) {
367 return mpi_to_ltc_error(mp_montgomery_reduce(a, b, *((mp_digit *)c)));
  /external/dropbear/libtommath/demo/
demo.c 59 mp_digit mp;
255 mp_digit tmp;
285 mp_digit r1, r2;
325 mp_dr_reduce(&c, &a, (((mp_digit) 1) << DIGIT_BIT) - a.dp[0]);

Completed in 430 milliseconds

1 23