Lines Matching refs:crypt_uword_t
71 #define RADIX_MASK ((((crypt_uword_t)1) << RADIX_LOG2) - 1)
79 typedef uint64_t crypt_uword_t; typedef
85 typedef uint32_t crypt_uword_t; typedef
92 #define MAX_CRYPT_UWORD (~((crypt_uword_t)0))
106 crypt_uword_t allocated; \
107 crypt_uword_t size; \
108 crypt_uword_t d[count]; \
127 #define BnGetArray(x) ((crypt_uword_t *)&((x)->d[0]))
130 #define BnGetWord(x, i) (crypt_uword_t)((x)->d[i])
139 ((BnGetSize(bn) == 1) && (BnGetWord(bn, 0) == (crypt_uword_t)word))
166 crypt_uword_t allocated; \
167 crypt_uword_t size; \
168 crypt_uword_t d[words < 1 ? 1 : words]; \