HomeSort by relevance Sort by last modified time
    Searched defs:mp_digit (Results 1 - 3 of 3) sorted by null

  /external/dropbear/libtommath/mtest/
mpi-types.h 3 typedef unsigned short mp_digit; /* 2 byte type */ typedef
8 #define MP_DIGIT_BIT (CHAR_BIT*sizeof(mp_digit))
  /external/dropbear/libtommath/
tommath.h 37 /* C++ compilers don't like assigning void * to mp_digit * */
57 * A "mp_digit" must be able to hold DIGIT_BIT + 1 bits
60 * At the very least a mp_digit must be able to hold 7 bits
64 typedef unsigned char mp_digit; typedef
67 typedef unsigned short mp_digit; typedef
76 typedef unsigned long mp_digit; typedef
94 typedef unsigned long mp_digit; typedef
125 /* otherwise the bits per digit is calculated automatically from the size of a mp_digit */
127 #define DIGIT_BIT ((int)((CHAR_BIT * sizeof(mp_digit) - 1))) /* bits per digit */
131 #define MP_MASK ((((mp_digit)1)<<((mp_digit)DIGIT_BIT))-((mp_digit)1)
    [all...]
  /external/wpa_supplicant_8/src/tls/
libtommath.c 73 typedef unsigned long mp_digit; typedef
79 typedef unsigned long mp_digit; typedef
92 #define MP_MASK ((((mp_digit)1)<<((mp_digit)DIGIT_BIT))-((mp_digit)1))
128 mp_digit *dp;
156 static void mp_set(mp_int * a, mp_digit b);
193 static int mp_mul_d (mp_int * a, mp_digit b, mp_int * c);
250 register mp_digit u, *tmpa, *tmpb, *tmpc;
271 u = *tmpc >> ((mp_digit)DIGIT_BIT)
    [all...]

Completed in 100 milliseconds