Home
last modified time | relevance | path

Searched refs:rotr64 (Results 1 – 4 of 4) sorted by relevance

/f-stack/freebsd/contrib/libb2/
H A Dblake2b-ref.c260 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()
H A Dblake2-impl.h126 static inline uint64_t rotr64( const uint64_t w, const unsigned c ) in rotr64() function
/f-stack/freebsd/contrib/libsodium/src/libsodium/include/sodium/private/
H A Dcommon.h39 #define ROTR64(X, B) rotr64((X), (B))
41 rotr64(const uint64_t x, const int b) in rotr64() function
/f-stack/freebsd/contrib/openzfs/module/icp/algs/edonr/
H A Dedonr.c52 #define rotr64(x, n) (((x) >> (n)) | ((x) << (64 - (n)))) macro