Searched refs:rotl32 (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/sys/contrib/openzfs/module/icp/algs/edonr/
H A Dedonr.c48 #define rotl32(x, n) (((x) << (n)) | ((x) >> (32 - (n)))) macro
117 s1 = rotl32(x07 + x3, 4); \
118 s2 = rotl32(x07 + x6, 8); \
120 s5 = rotl32(x04 + x23 + x5, 22); \
122 s6 = rotl32(x17 + x56 + x0, 24); \
124 s3 = rotl32(x26 + x7, 13); \
125 s4 = rotl32(x26 + x1, 17); \
126 s7 = rotl32(x26 + x4, 29); \
162 t2 = rotl32(y05 + y3, 9); \
164 t1 = rotl32(y0
[all...]
/freebsd-13-stable/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) function
/freebsd-13-stable/sys/contrib/ck/src/
H A Dck_ht_hash.h68 static inline uint32_t rotl32 ( uint32_t x, int8_t r ) function
78 #define ROTL32(x,y) rotl32(x,y)
/freebsd-13-stable/sys/contrib/libb2/
H A Dblake2-impl.h111 static inline uint32_t rotl32( const uint32_t w, const unsigned c ) function
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h91 /// rotl32 - Rotate a 32-bit unsigned value left by a specified # bits.
93 inline unsigned rotl32(unsigned Val, unsigned Amt) { function in namespace:llvm::ARM_AM
175 return rotl32(Arg, RotAmt) | ((RotAmt>>1) << 8);
/freebsd-13-stable/contrib/llvm-project/lld/ELF/Arch/
H A DARM.cpp427 static uint32_t rotl32(uint32_t val, uint32_t amt) { function
650 val = rotl32(val, rotAmt) | ((rotAmt >> 1) << 8);
/freebsd-13-stable/crypto/openssl/crypto/aria/
H A Daria.c32 #define rotl32(v, r) (((uint32_t)(v) << (r)) | ((uint32_t)(v) >> (32 - r))) macro

Completed in 78 milliseconds