HomeSort by: relevance | last modified time | path
    Searched defs:mp_digit (Results 1 - 6 of 6) sorted by relevancy

  /src/sbin/nvmectl/
bn.h 48 typedef unsigned long mp_digit; typedef
53 mp_digit *dp; /* array of digits */
60 #define BN_ULONG mp_digit
  /src/crypto/external/bsd/netpgp/dist/src/libbn/
bn.h 48 typedef unsigned long mp_digit; typedef
53 mp_digit *dp; /* array of digits */
60 #define BN_ULONG mp_digit
  /src/external/mit/isl/dist/imath/
imath.h 47 typedef uint16_t mp_digit; typedef
52 typedef uint32_t mp_digit; typedef
59 mp_digit single;
60 mp_digit* digits;
66 static inline mp_digit* MP_DIGITS(mp_int Z) { return Z->digits; }
81 #define MP_DIGIT_BIT (sizeof(mp_digit) * CHAR_BIT)
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
tommath.h 39 /* C++ compilers don't like assigning void * to mp_digit * */
59 * A "mp_digit" must be able to hold DIGIT_BIT + 1 bits
62 * At the very least a mp_digit must be able to hold 7 bits
66 typedef unsigned char mp_digit; typedef
69 typedef unsigned short mp_digit; typedef
78 typedef unsigned long mp_digit; typedef
96 typedef unsigned long mp_digit; typedef
127 /* otherwise the bits per digit is calculated automatically from the size of a mp_digit */
129 #define DIGIT_BIT ((int)((CHAR_BIT * sizeof(mp_digit) - 1))) /* bits per digit */
133 #define MP_MASK ((((mp_digit)1)<<((mp_digit)DIGIT_BIT))-((mp_digit)1)
    [all...]
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
bn.h 113 typedef unsigned long mp_digit; typedef
118 mp_digit *dp; /* array of digits */
125 #define PGPV_BN_ULONG mp_digit
  /src/external/bsd/wpa/dist/src/tls/
libtommath.c 65 typedef unsigned long mp_digit; typedef
71 typedef unsigned long mp_digit; typedef
84 #define MP_MASK ((((mp_digit)1)<<((mp_digit)DIGIT_BIT))-((mp_digit)1))
120 mp_digit *dp;
148 static void mp_set(mp_int * a, mp_digit b);
185 static int mp_mul_d (mp_int * a, mp_digit b, mp_int * c);
242 register mp_digit u, *tmpa, *tmpb, *tmpc;
263 u = *tmpc >> ((mp_digit)DIGIT_BIT)
    [all...]

Completed in 26 milliseconds