Searched defs:ROTL (Results 1 – 7 of 7) sorted by relevance
/third_party/node/deps/v8/src/third_party/siphash/ |
D | halfsiphash.cc | 25 #define ROTL(x, b) (uint32_t)(((x) << (b)) | ((x) >> (32 - (b)))) macro
|
/third_party/openssl/crypto/cast/ |
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/node/deps/openssl/openssl/crypto/cast/ |
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/siphash/ |
D | siphash.c | 32 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
|
/third_party/node/deps/openssl/openssl/crypto/siphash/ |
D | siphash.c | 32 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
|
/third_party/mbedtls/library/ |
D | camellia.c | 224 #define ROTL(DEST, SRC, SHIFT) \ macro
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 471 SHL, SRA, SRL, ROTL, ROTR, FSHL, FSHR, enumerator
|