Searched defs:ROTL (Results 1 – 13 of 13) sorted by relevance
/external/AFLplusplus/src/ |
D | afl-performance.c | 20 #define ROTL(d, lrot) ((d << (lrot)) | (d >> (8 * sizeof(d) - (lrot)))) macro
|
/external/rust/android-crates-io/crates/quiche/deps/boringssl/src/decrepit/cast/ |
D | cast.c | 88 #define ROTL(a, n) (_lrotl(a, n)) macro 90 #define ROTL(a, n) ((((a) << (n)) | ((a) >> ((-(n))&31))) & 0xffffffffL) macro
|
/external/tensorflow/tensorflow/core/kernels/ |
D | random_index_shuffle.cc | 52 #define ROTL(x, r, W) (((x) << (r)) | (x >> (W - (r)))) macro
|
/external/vboot_reference/firmware/2lib/ |
D | 2sha256.c | 50 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
|
D | 2sha512.c | 44 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
|
/external/avb/libavb/sha/ |
D | sha512_impl.c | 43 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
|
D | sha256_impl.c | 43 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
|
/external/mbedtls/library/ |
D | camellia.c | 212 #define ROTL(DEST, SRC, SHIFT) \ macro
|
/external/openthread/third_party/mbedtls/repo/library/ |
D | camellia.c | 212 #define ROTL(DEST, SRC, SHIFT) \ macro
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZSelectionDAGInfo.cpp | 178 SDValue ROTL = DAG.getNode(ISD::ROTL, DL, MVT::i32, SRL, in addIPMSequence() local
|
/external/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 339 SHL, SRA, SRL, ROTL, ROTR, enumerator
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 471 SHL, SRA, SRL, ROTL, ROTR, FSHL, FSHR, enumerator
|
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 694 ROTL, enumerator
|