Home
last modified time | relevance | path

Searched refs:rotl32 (Results 1 – 6 of 6) sorted by relevance

/freebsd/sys/contrib/ck/src/
H A Dck_ht_hash.h68 static inline uint32_t rotl32 ( uint32_t x, int8_t r ) in rotl32() function
78 #define ROTL32(x,y) rotl32(x,y)
/freebsd/sys/contrib/libsodium/src/libsodium/include/sodium/private/
H A Dcommon.h18 #define ROTL32(X, B) rotl32((X), (B))
20 rotl32(const uint32_t x, const int b) in rotl32() function
/freebsd/sys/contrib/libb2/
H A Dblake2-impl.h111 static inline uint32_t rotl32( const uint32_t w, const unsigned c ) in rotl32() function
/freebsd/crypto/openssl/crypto/aria/
H A Daria.c32 #define rotl32(v, r) (((uint32_t)(v) << (r)) | ((uint32_t)(v) >> (32 - r))) macro
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/
H A DCSKYInstrFormats.td515 // ixd32, and32, andn32, or32, xor32, nor32, lsl32, lsr32, asr32, rotl32
H A DCSKYInstrInfo.td586 BinOpFrag<(rotl node:$LHS, (and node:$RHS, 0x1f))>, "rotl32">;