HomeSort by relevance Sort by last modified time
    Searched refs:MP_MASK (Results 26 - 31 of 31) sorted by null

12

  /external/dropbear/libtommath/etc/
2kprime.c 30 if (z > MP_MASK) {
pprime.c 60 r &= MP_MASK;
  /external/wpa_supplicant_8/src/tls/
libtommath.c 92 #define MP_MASK ((((mp_digit)1)<<((mp_digit)DIGIT_BIT))-((mp_digit)1))
274 *tmpc++ &= MP_MASK;
289 *tmpc++ &= MP_MASK;
348 *tmpc++ &= MP_MASK;
360 *tmpc++ &= MP_MASK;
986 a->dp[0] = (*b & MP_MASK);
1328 a->dp[0] = b & MP_MASK;
1431 *tmpc = ((*tmpc << d) | r) & MP_MASK;
    [all...]
  /external/dropbear/libtommath/pre_gen/
mpi.c 280 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK);
351 *tmpx++ = (mp_digit)(*_W++ & ((mp_word) MP_MASK));
457 W[ix] = ((mp_digit)_W) & MP_MASK;
558 W[ix] = ((mp_digit)_W) & MP_MASK;
678 W[ix] = (mp_digit)(_W & MP_MASK);
692 *tmpb++ = W[ix] & MP_MASK;
935 *tmpc++ &= MP_MASK;
941 *tmpc++ &= MP_MASK;
    [all...]
  /external/dropbear/libtommath/
tommath.h 131 #define MP_MASK ((((mp_digit)1)<<((mp_digit)DIGIT_BIT))-((mp_digit)1))
132 #define MP_DIGIT_MAX MP_MASK
  /external/dropbear/libtommath/demo/
demo.c 306 a.dp[ix] = MP_MASK;

Completed in 63 milliseconds

12