Searched defs:rotr64 (Results 1 – 3 of 3) sorted by relevance
126 static inline uint64_t rotr64( const uint64_t w, const unsigned c ) in rotr64() function
41 rotr64(const uint64_t x, const int b) in rotr64() function
52 #define rotr64(x, n) (((x) >> (n)) | ((x) << (64 - (n)))) macro