Home
last modified time | relevance | path

Searched defs:ROTL (Results 1 – 7 of 7) sorted by relevance

/third_party/node/deps/v8/src/third_party/siphash/
Dhalfsiphash.cc25 #define ROTL(x, b) (uint32_t)(((x) << (b)) | ((x) >> (32 - (b)))) macro
/third_party/openssl/crypto/cast/
Dcast_local.h117 # 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/
Dcast_local.h117 # 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/
Dsiphash.c32 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
/third_party/node/deps/openssl/openssl/crypto/siphash/
Dsiphash.c32 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
/third_party/mbedtls/library/
Dcamellia.c224 #define ROTL(DEST, SRC, SHIFT) \ macro
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DISDOpcodes.h471 SHL, SRA, SRL, ROTL, ROTR, FSHL, FSHR, enumerator