Searched defs:rotl64 (Results 1 – 5 of 5) sorted by relevance
116 static inline uint64_t rotl64( const uint64_t w, const unsigned c ) in rotl64() function
73 static inline uint64_t rotl64 ( uint64_t x, int8_t r ) in rotl64() function
27 rotl64(const uint64_t x, const int b) in rotl64() function
57 #define rotl64(x, n) (((x) << (n)) | ((x) >> (64 - (n)))) macro
66 static uint64_t rotl64(uint64_t X, size_t R) { in rotl64() function