Home
last modified time | relevance | path

Searched refs:rotr32 (Results 1 – 5 of 5) sorted by relevance

/f-stack/freebsd/contrib/libb2/
H A Dblake2s-ref.c252 d = rotr32(d ^ a, 16); \ in blake2s_compress()
254 b = rotr32(b ^ c, 12); \ in blake2s_compress()
256 d = rotr32(d ^ a, 8); \ in blake2s_compress()
258 b = rotr32(b ^ c, 7); \ in blake2s_compress()
H A Dblake2-impl.h121 static inline uint32_t rotr32( const uint32_t w, const unsigned c ) in rotr32() function
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/
H A Dblamka-round-avx2.h7 #define rotr32(x) _mm256_shuffle_epi32(x, _MM_SHUFFLE(2, 3, 0, 1)) macro
18 D0 = rotr32(D0); \
31 D1 = rotr32(D1); \
/f-stack/freebsd/contrib/libsodium/src/libsodium/include/sodium/private/
H A Dcommon.h32 #define ROTR32(X, B) rotr32((X), (B))
34 rotr32(const uint32_t x, const int b) in rotr32() function
/f-stack/freebsd/contrib/openzfs/module/icp/algs/edonr/
H A Dedonr.c49 #define rotr32(x, n) (((x) >> (n)) | ((x) << (32 - (n)))) macro