Searched refs:rotr64 (Results 1 – 4 of 4) sorted by relevance
260 d = rotr64(d ^ a, 32); \ in blake2b_compress()262 b = rotr64(b ^ c, 24); \ in blake2b_compress()264 d = rotr64(d ^ a, 16); \ in blake2b_compress()266 b = rotr64(b ^ c, 63); \ in blake2b_compress()
126 static inline uint64_t rotr64( const uint64_t w, const unsigned c ) in rotr64() function
39 #define ROTR64(X, B) rotr64((X), (B))41 rotr64(const uint64_t x, const int b) in rotr64() function
52 #define rotr64(x, n) (((x) >> (n)) | ((x) << (64 - (n)))) macro