Searched defs:rotr64 (Results 1 – 5 of 5) sorted by relevance
115 static ossl_inline uint64_t rotr64(const uint64_t w, const unsigned int c) in rotr64() function
149 static BLAKE2_INLINE uint64_t rotr64( const uint64_t w, const unsigned c ) in rotr64() function
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
138 #define rotr64(x, n) (((x) >> n) | ((x) << (64 - n))) macro