Home
last modified time | relevance | path

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

/external/boringssl/src/decrepit/cast/
Dcast.c93 #define ROTL(a, n) (_lrotl(a, n)) macro
95 #define ROTL(a, n) ((((a) << (n)) | ((a) >> ((-(n))&31))) & 0xffffffffL) macro
/external/skia/src/core/
DSkChecksum.h32 ROTL = sizeof(uintptr_t) * 8 - ROTR, enumerator
/external/vboot_reference/firmware/2lib/
D2sha256.c44 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
D2sha512.c44 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
/external/vboot_reference/firmware/lib/cryptolib/
Dsha256.c45 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
Dsha512.c45 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
/external/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp186 SDValue ROTL = DAG.getNode(ISD::ROTL, DL, MVT::i32, SRL, in addIPMSequence() local
/external/llvm/include/llvm/CodeGen/
DISDOpcodes.h323 SHL, SRA, SRL, ROTL, ROTR, enumerator
/external/valgrind/VEX/priv/
Dguest_ppc_toIR.c1630 static IRExpr* /* :: Ity_I32/64 */ ROTL ( IRExpr* src, in ROTL() function