Searched defs:ROTL (Results 1 - 9 of 9) sorted by relevance
/third_party/node/deps/v8/src/third_party/siphash/ |
H A D | halfsiphash.cc | 25 #define ROTL(x, b) (uint32_t)(((x) << (b)) | ((x) >> (32 - (b)))) macro
|
/third_party/node/deps/openssl/openssl/crypto/cast/ |
H A D | cast_local.h | 117 # define ROTL(a,n) (_lrotl(a,n)) macro 119 # define ROTL(a,n) ((((a)<<(n))&0xffffffffL)|((a)>>((32-(n))&31))) macro
|
/third_party/openssl/crypto/cast/ |
H A D | cast_local.h | 117 # define ROTL(a,n) (_lrotl(a,n)) macro 119 # define ROTL(a,n) ((((a)<<(n))&0xffffffffL)|((a)>>((32-(n))&31))) macro
|
/third_party/eudev/src/shared/ |
H A D | siphash24.c | 27 #define ROTL(x,b) (u64)( ((x) << (b)) | ( (x) >> (64 - (b))) ) macro
|
/third_party/node/deps/openssl/openssl/crypto/siphash/ |
H A D | siphash.c | 32 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
|
/third_party/openssl/crypto/siphash/ |
H A D | siphash.c | 32 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
|
/third_party/mbedtls/library/ |
H A D | camellia.c | 212 #define ROTL(DEST, SRC, SHIFT) \ macro
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | ISDOpcodes.h | 471 SHL, SRA, SRL, ROTL, ROTR, FSHL, FSHR, enumerator
|
/third_party/sqlite/src/ |
H A D | sqlite3.c | 32657 #define ROTL global() macro [all...] |
Completed in 127 milliseconds