Home
last modified time | relevance | path

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

/external/boringssl/src/decrepit/cast/
Dcast.c85 #define ROTL(a, n) (_lrotl(a, n)) macro
87 #define ROTL(a, n) ((((a) << (n)) | ((a) >> ((-(n))&31))) & 0xffffffffL) macro
/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/dbus/dbus/
Ddbus-sha.c125 #define ROTL(n,X) ( ( ( X ) << n ) | ( ( X ) >> ( 32 - n ) ) ) macro
/external/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp181 SDValue ROTL = DAG.getNode(ISD::ROTL, DL, MVT::i32, SRL, in addIPMSequence() local
/external/mmc-utils/3rdparty/hmac_sha/
Dsha2.c48 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
/external/llvm/include/llvm/CodeGen/
DISDOpcodes.h336 SHL, SRA, SRL, ROTL, ROTR, enumerator
/external/valgrind/VEX/priv/
Dguest_ppc_toIR.c1640 static IRExpr* /* :: Ity_I32/64 */ ROTL ( IRExpr* src, in ROTL() function