Searched refs:rotr32 (Results 1 – 5 of 5) sorted by relevance
| /f-stack/freebsd/contrib/libb2/ |
| H A D | blake2s-ref.c | 252 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 D | blake2-impl.h | 121 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 D | blamka-round-avx2.h | 7 #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 D | common.h | 32 #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 D | edonr.c | 49 #define rotr32(x, n) (((x) >> (n)) | ((x) << (32 - (n)))) macro
|