OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rotl32
(Results
1 - 5
of
5
) sorted by relevancy
/src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/private/
common.h
18
#define
ROTL32
(X, B)
rotl32
((X), (B))
20
rotl32
(const uint32_t x, const int b)
function
/src/crypto/external/apache2/openssl/dist/crypto/aria/
aria.c
32
#define
rotl32
(v, r) (((uint32_t)(v) << (r)) | ((uint32_t)(v) >> (32 - r)))
macro
/src/crypto/external/bsd/openssl/dist/crypto/aria/
aria.c
32
#define
rotl32
(v, r) (((uint32_t)(v) << (r)) | ((uint32_t)(v) >> (32 - r)))
macro
/src/crypto/external/bsd/openssl.old/dist/crypto/aria/
aria.c
32
#define
rotl32
(v, r) (((uint32_t)(v) << (r)) | ((uint32_t)(v) >> (32 - r)))
macro
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h
91
///
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);
Completed in 23 milliseconds
Indexes created Thu Jul 09 00:25:44 UTC 2026