Searched defs:rotr32 (Results 1 – 12 of 12) sorted by relevance
/freebsd/crypto/openssl/providers/implementations/digests/ |
H A D | blake2_impl.h | 110 static ossl_inline uint32_t rotr32(const uint32_t w, const unsigned int c) in rotr32() function
|
/freebsd/contrib/bearssl/src/symcipher/ |
H A D | aes_ct64_enc.c | 60 rotr32(uint64_t x) in rotr32() function
|
H A D | aes_ct64_dec.c | 104 rotr32(uint64_t x) in rotr32() function
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_blake2_impl.h | 144 static BLAKE2_INLINE uint32_t rotr32( const uint32_t w, const unsigned c ) in rotr32() function
|
/freebsd/sys/contrib/libb2/ |
H A D | blake2-impl.h | 121 static inline uint32_t rotr32( const uint32_t w, const unsigned c ) in rotr32() function
|
/freebsd/contrib/llvm-project/llvm/lib/Support/BLAKE3/ |
H A D | blake3_portable.c | 4 INLINE uint32_t rotr32(uint32_t w, uint32_t c) { in rotr32() function
|
/freebsd/sys/contrib/openzfs/module/icp/algs/blake3/ |
H A D | blake3_generic.c | 32 #define rotr32(x, n) (((x) >> (n)) | ((x) << (32 - (n)))) macro
|
/freebsd/sys/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
|
/freebsd/sys/contrib/libsodium/src/libsodium/include/sodium/private/ |
H A D | common.h | 34 rotr32(const uint32_t x, const int b) in rotr32() function
|
/freebsd/sys/contrib/openzfs/module/icp/algs/sha2/ |
H A D | sha2_generic.c | 64 #define rotr32(x, n) (((x) >> n) | ((x) << (32 - n))) macro
|
/freebsd/crypto/openssl/crypto/aria/ |
H A D | aria.c | 33 #define rotr32(v, r) (((uint32_t)(v) >> (r)) | ((uint32_t)(v) << (32 - r))) macro
|
/freebsd/contrib/llvm-project/lld/ELF/Arch/ |
H A D | ARM.cpp | 519 static uint32_t rotr32(uint32_t val, uint32_t amt) { in rotr32() function
|