/external/v8/src/third_party/siphash/ |
D | halfsiphash.cc | 25 #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/ |
D | rotate.ll | 4 ;; select ROTL. Make sure if generates the basic ushr/shl.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | rotate.ll | 4 ;; select ROTL. Make sure if generates the basic ushr/shl.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/ |
D | rotate.ll | 4 ;; select ROTL. Make sure if generates the basic VSHL/VSHR.
|
/external/llvm/test/CodeGen/ARM/ |
D | rotate.ll | 4 ;; select ROTL. Make sure if generates the basic VSHL/VSHR.
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZSelectionDAGInfo.cpp | 178 SDValue ROTL = DAG.getNode(ISD::ROTL, DL, MVT::i32, SRL, in addIPMSequence() local 180 return ROTL; in addIPMSequence()
|
D | SystemZISelDAGToDAG.cpp | 807 case ISD::ROTL: { in expandRxSBG() 1269 case ISD::ROTL: in Select()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/ |
D | SystemZSelectionDAGInfo.cpp | 175 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/ |
D | rotl-rotr.ll | 5 ; These IR sequences will generate ISD::ROTL and ISD::ROTR nodes, that the
|
/external/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 97 t = ROTL(t, (key[n * 2 + 1])); \
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86IntrinsicsInfo.h | 976 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/ |
D | ISDOpcodes.h | 339 SHL, SRA, SRL, ROTL, ROTR, enumerator
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 382 SHL, SRA, SRL, ROTL, ROTR, enumerator
|
/external/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyInstrInteger.td | 39 defm ROTL : BinaryInt<rotl, "rotl">;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyInstrInteger.td | 39 defm ROTL : BinaryInt<rotl, "rotl", 0x77, 0x89>;
|
/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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/ |
D | AVRISelLowering.cpp | 90 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/ |
D | avb_sha256.c | 42 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
|
D | avb_sha512.c | 42 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
|
/external/u-boot/lib/libavb/ |
D | avb_sha512.c | 15 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
|
D | avb_sha256.c | 15 #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/X86/ |
D | X86IntrinsicsInfo.h | 1218 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),
|