Searched defs:ROTL (Results 1 – 9 of 9) sorted by relevance
/external/boringssl/src/decrepit/cast/ |
D | cast.c | 93 #define ROTL(a, n) (_lrotl(a, n)) macro 95 #define ROTL(a, n) ((((a) << (n)) | ((a) >> ((-(n))&31))) & 0xffffffffL) macro
|
/external/skia/src/core/ |
D | SkChecksum.h | 32 ROTL = sizeof(uintptr_t) * 8 - ROTR, enumerator
|
/external/vboot_reference/firmware/2lib/ |
D | 2sha256.c | 44 #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/vboot_reference/firmware/lib/cryptolib/ |
D | sha256.c | 45 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
|
D | sha512.c | 45 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZSelectionDAGInfo.cpp | 186 SDValue ROTL = DAG.getNode(ISD::ROTL, DL, MVT::i32, SRL, in addIPMSequence() local
|
/external/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 323 SHL, SRA, SRL, ROTL, ROTR, enumerator
|
/external/valgrind/VEX/priv/ |
D | guest_ppc_toIR.c | 1630 static IRExpr* /* :: Ity_I32/64 */ ROTL ( IRExpr* src, in ROTL() function
|