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

  /src/sbin/nvmectl/
bn.h 49 typedef uint64_t mp_word; typedef
  /src/crypto/external/bsd/netpgp/dist/src/libbn/
bn.h 49 typedef uint64_t mp_word; typedef
  /src/external/mit/isl/dist/imath/
imath.h 48 typedef uint32_t mp_word; typedef
53 typedef uint64_t mp_word; typedef
82 #define MP_WORD_BIT (sizeof(mp_word) * CHAR_BIT)
98 Requires `ndigits >= sizeof(mp_word)`. */
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
tommath.h 60 * A "mp_word" must be able to hold 2*DIGIT_BIT + 1 bits
67 typedef unsigned short mp_word; typedef
70 typedef unsigned long mp_word; typedef
79 typedef unsigned long mp_word __attribute__ ((mode(TI))); typedef
97 typedef ulong64 mp_word; typedef
178 #define MP_WARRAY (1 << (sizeof(mp_word) * CHAR_BIT - 2 * DIGIT_BIT + 1))
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
bn.h 114 typedef uint64_t mp_word; typedef
  /src/external/bsd/wpa/dist/src/tls/
libtommath.c 66 typedef unsigned long mp_word __attribute__((mode(TI))); typedef
72 typedef u64 mp_word; typedef
115 #define MP_WARRAY (1 << (sizeof(mp_word) * CHAR_BIT - 2 * DIGIT_BIT + 1))
514 (1 << ((CHAR_BIT * sizeof (mp_word)) - (2 * DIGIT_BIT)))) {
1775 mp_word tmp;
1776 tmp = ((mp_word) x.dp[i]) << ((mp_word) DIGIT_BIT);
1777 tmp |= ((mp_word) x.dp[i - 1]);
1778 tmp /= ((mp_word) y.dp[t]);
1779 if (tmp > (mp_word) MP_MASK
    [all...]

Completed in 31 milliseconds