Home | History | Annotate | Download | only in modes

Lines Matching refs:U64

13 typedef unsigned __int64 u64;
14 #define U64(C) C##UI64
17 typedef unsigned long u64;
18 #define U64(C) C##UL
21 typedef unsigned long long u64;
22 #define U64(C) C##ULL
42 # define BSWAP8(x) ({ u64 ret=(x); \
49 # define BSWAP8(x) ({ u32 lo=(u64)(x)>>32,hi=(x); \
52 (u64)hi<<32|lo; })
57 # define BSWAP8(x) ({ u32 lo=(u64)(x)>>32,hi=(x); \
60 (u64)hi<<32|lo; })
69 # define BSWAP8(x) _byteswap_uint64((u64)(x))
91 typedef struct { u64 hi,lo; } u128;
104 union { u64 u[2]; u32 d[4]; u8 c[16]; } Yi,EKi,EK0,len,
112 void (*gmult)(u64 Xi[2],const u128 Htable[16]);
113 void (*ghash)(u64 Xi[2],const u128 Htable[16],const u8 *inp,size_t len);
126 union { u64 u[2]; u8 c[16]; } nonce, cmac;
127 u64 blocks;