Searched defs:ROTL (Results 1 – 7 of 7) sorted by relevance
/third_party/node/deps/npm/node_modules/uuid/lib/ |
D | sha1-browser.js | 14 function ROTL(x, n) { class
|
/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/eudev/src/shared/ |
D | siphash24.c | 27 #define ROTL(x,b) (u64)( ((x) << (b)) | ( (x) >> (64 - (b))) ) macro
|
/third_party/openssl/crypto/siphash/ |
D | siphash.c | 37 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
|
/third_party/mbedtls/library/ |
D | camellia.c | 237 #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
|
/third_party/glib/glib/ |
D | gchecksum.c | 535 #define ROTL(n,X) (((X) << n ) | ((X) >> (32 - n))) macro
|