Lines Matching refs:u64
15 typedef unsigned __int64 u64; typedef
19 typedef unsigned long u64; typedef
23 typedef unsigned long long u64; typedef
44 # define BSWAP8(x) ({ u64 ret_=(x); \
51 # define BSWAP8(x) ({ u32 lo_=(u64)(x)>>32,hi_=(x); \
54 (u64)hi_<<32|lo_; })
61 # define BSWAP8(x) ({ u64 ret_; \
69 # define BSWAP8(x) ({ u32 lo_=(u64)(x)>>32,hi_=(x); \
72 (u64)hi_<<32|lo_; })
78 # define BSWAP8(x) ({ u64 ret_=(x); \
89 # define BSWAP8(x) _byteswap_uint64((u64)(x))
107 u64 hi, lo;
110 typedef void (*gcm_init_fn)(u128 Htable[16], const u64 H[2]);
111 typedef void (*gcm_ghash_fn)(u64 Xi[2], const u128 Htable[16], const u8 *inp, size_t len);
112 typedef void (*gcm_gmult_fn)(u64 Xi[2], const u128 Htable[16]);
122 u64 u[2];
142 void ossl_gcm_init_4bit(u128 Htable[16], const u64 H[2]);
143 void ossl_gcm_ghash_4bit(u64 Xi[2], const u128 Htable[16],
145 void ossl_gcm_gmult_4bit(u64 Xi[2], const u128 Htable[16]);
166 u64 u[2];
169 u64 blocks;
177 u64 a[2];
205 u64 blocks_hashed;
206 u64 blocks_processed;