Home
last modified time | relevance | path

Searched refs:ROTL (Results 1 – 25 of 82) sorted by relevance

1234

/external/v8/src/third_party/siphash/
Dhalfsiphash.cc25 #define ROTL(x, b) (uint32_t)(((x) << (b)) | ((x) >> (32 - (b)))) macro
30 v1 = ROTL(v1, 5); \
32 v0 = ROTL(v0, 16); \
34 v3 = ROTL(v3, 8); \
37 v3 = ROTL(v3, 7); \
40 v1 = ROTL(v1, 13); \
42 v2 = ROTL(v2, 16); \
/external/llvm/test/CodeGen/AArch64/
Drotate.ll4 ;; select ROTL. Make sure if generates the basic ushr/shl.
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/
Drotate.ll4 ;; select ROTL. Make sure if generates the basic ushr/shl.
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/
Drotate.ll4 ;; select ROTL. Make sure if generates the basic VSHL/VSHR.
/external/llvm/test/CodeGen/ARM/
Drotate.ll4 ;; select ROTL. Make sure if generates the basic VSHL/VSHR.
/external/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp178 SDValue ROTL = DAG.getNode(ISD::ROTL, DL, MVT::i32, SRL, in addIPMSequence() local
180 return ROTL; in addIPMSequence()
DSystemZISelDAGToDAG.cpp807 case ISD::ROTL: { in expandRxSBG()
1269 case ISD::ROTL: in Select()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp175 SDValue ROTL = DAG.getNode(ISD::ROTL, DL, MVT::i32, SRL, in addIPMSequence() local
177 return ROTL; in addIPMSequence()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/RISCV/
Drotl-rotr.ll5 ; These IR sequences will generate ISD::ROTL and ISD::ROTR nodes, that the
/external/boringssl/src/decrepit/cast/
Dcast.c88 #define ROTL(a, n) (_lrotl(a, n)) macro
90 #define ROTL(a, n) ((((a) << (n)) | ((a) >> ((-(n))&31))) & 0xffffffffL) macro
97 t = ROTL(t, (key[n * 2 + 1])); \
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86IntrinsicsInfo.h976 X86_INTRINSIC_DATA(avx512_prolv_d_128, INTR_TYPE_2OP, ISD::ROTL, 0),
977 X86_INTRINSIC_DATA(avx512_prolv_d_256, INTR_TYPE_2OP, ISD::ROTL, 0),
978 X86_INTRINSIC_DATA(avx512_prolv_d_512, INTR_TYPE_2OP, ISD::ROTL, 0),
979 X86_INTRINSIC_DATA(avx512_prolv_q_128, INTR_TYPE_2OP, ISD::ROTL, 0),
980 X86_INTRINSIC_DATA(avx512_prolv_q_256, INTR_TYPE_2OP, ISD::ROTL, 0),
981 X86_INTRINSIC_DATA(avx512_prolv_q_512, INTR_TYPE_2OP, ISD::ROTL, 0),
1283 X86_INTRINSIC_DATA(xop_vprotb, INTR_TYPE_2OP, ISD::ROTL, 0),
1285 X86_INTRINSIC_DATA(xop_vprotd, INTR_TYPE_2OP, ISD::ROTL, 0),
1287 X86_INTRINSIC_DATA(xop_vprotq, INTR_TYPE_2OP, ISD::ROTL, 0),
1289 X86_INTRINSIC_DATA(xop_vprotw, INTR_TYPE_2OP, ISD::ROTL, 0),
/external/llvm/include/llvm/CodeGen/
DISDOpcodes.h339 SHL, SRA, SRL, ROTL, ROTR, enumerator
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DISDOpcodes.h382 SHL, SRA, SRL, ROTL, ROTR, enumerator
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyInstrInteger.td39 defm ROTL : BinaryInt<rotl, "rotl">;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
DWebAssemblyInstrInteger.td39 defm ROTL : BinaryInt<rotl, "rotl", 0x77, 0x89>;
/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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/
DAVRISelLowering.cpp90 setOperationAction(ISD::ROTL, MVT::i8, Custom); in AVRTargetLowering()
91 setOperationAction(ISD::ROTL, MVT::i16, Custom); in AVRTargetLowering()
289 case ISD::ROTL: in LowerShifts()
308 case ISD::ROTL: in LowerShifts()
682 case ISD::ROTL: in LowerOperation()
/external/avb/libavb/
Davb_sha256.c42 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
Davb_sha512.c42 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
/external/u-boot/lib/libavb/
Davb_sha512.c15 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
Davb_sha256.c15 #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/X86/
DX86IntrinsicsInfo.h1218 X86_INTRINSIC_DATA(avx512_mask_prolv_d_128, INTR_TYPE_2OP_MASK, ISD::ROTL, 0),
1219 X86_INTRINSIC_DATA(avx512_mask_prolv_d_256, INTR_TYPE_2OP_MASK, ISD::ROTL, 0),
1220 X86_INTRINSIC_DATA(avx512_mask_prolv_d_512, INTR_TYPE_2OP_MASK, ISD::ROTL, 0),
1221 X86_INTRINSIC_DATA(avx512_mask_prolv_q_128, INTR_TYPE_2OP_MASK, ISD::ROTL, 0),
1222 X86_INTRINSIC_DATA(avx512_mask_prolv_q_256, INTR_TYPE_2OP_MASK, ISD::ROTL, 0),
1223 X86_INTRINSIC_DATA(avx512_mask_prolv_q_512, INTR_TYPE_2OP_MASK, ISD::ROTL, 0),

1234