Home
last modified time | relevance | path

Searched defs:rotr32 (Results 1 – 12 of 12) sorted by relevance

/freebsd/crypto/openssl/providers/implementations/digests/
H A Dblake2_impl.h110 static ossl_inline uint32_t rotr32(const uint32_t w, const unsigned int c) in rotr32() function
/freebsd/contrib/bearssl/src/symcipher/
H A Daes_ct64_enc.c60 rotr32(uint64_t x) in rotr32() function
H A Daes_ct64_dec.c104 rotr32(uint64_t x) in rotr32() function
/freebsd/contrib/libarchive/libarchive/
H A Darchive_blake2_impl.h144 static BLAKE2_INLINE uint32_t rotr32( const uint32_t w, const unsigned c ) in rotr32() function
/freebsd/sys/contrib/libb2/
H A Dblake2-impl.h121 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 Dblake3_portable.c4 INLINE uint32_t rotr32(uint32_t w, uint32_t c) { in rotr32() function
/freebsd/sys/contrib/openzfs/module/icp/algs/blake3/
H A Dblake3_generic.c32 #define rotr32(x, n) (((x) >> (n)) | ((x) << (32 - (n)))) macro
/freebsd/sys/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
/freebsd/sys/contrib/libsodium/src/libsodium/include/sodium/private/
H A Dcommon.h34 rotr32(const uint32_t x, const int b) in rotr32() function
/freebsd/sys/contrib/openzfs/module/icp/algs/sha2/
H A Dsha2_generic.c64 #define rotr32(x, n) (((x) >> n) | ((x) << (32 - n))) macro
/freebsd/crypto/openssl/crypto/aria/
H A Daria.c33 #define rotr32(v, r) (((uint32_t)(v) >> (r)) | ((uint32_t)(v) << (32 - r))) macro
/freebsd/contrib/llvm-project/lld/ELF/Arch/
H A DARM.cpp519 static uint32_t rotr32(uint32_t val, uint32_t amt) { in rotr32() function