/external/llvm/test/MC/Mips/msa/ |
D | test_3rf.s | 49 # CHECK: fseq.w $w11, $w17, $w13 # encoding: [0x7a,0x8d,0x8a,0xda] 50 # CHECK: fseq.d $w29, $w0, $w31 # encoding: [0x7a,0xbf,0x07,0x5a] 132 fseq.w $w11, $w17, $w13 133 fseq.d $w29, $w0, $w31
|
/external/llvm-project/llvm/test/MC/Mips/msa/ |
D | test_3rf.s | 49 # CHECK: fseq.w $w11, $w17, $w13 # encoding: [0x7a,0x8d,0x8a,0xda] 50 # CHECK: fseq.d $w29, $w0, $w31 # encoding: [0x7a,0xbf,0x07,0x5a] 132 fseq.w $w11, $w17, $w13 133 fseq.d $w29, $w0, $w31
|
/external/capstone/suite/MC/Mips/ |
D | test_3rf.s.cs | 48 0x7a,0x8d,0x8a,0xda = fseq.w $w11, $w17, $w13 49 0x7a,0xbf,0x07,0x5a = fseq.d $w29, $w0, $w31
|
/external/llvm/test/MC/Disassembler/Mips/msa/ |
D | test_3rf.txt | 49 0x7a 0x8d 0x8a 0xda # CHECK: fseq.w $w11, $w17, $w13 50 0x7a 0xbf 0x07 0x5a # CHECK: fseq.d $w29, $w0, $w31
|
/external/llvm-project/llvm/test/MC/Disassembler/Mips/msa/ |
D | test_3rf.txt | 49 0x7a 0x8d 0x8a 0xda # CHECK: fseq.w $w11, $w17, $w13 50 0x7a 0xbf 0x07 0x5a # CHECK: fseq.d $w29, $w0, $w31
|
/external/llvm/test/CodeGen/Mips/msa/ |
D | 3rf_int_float.ll | 543 %2 = tail call <4 x i32> @llvm.mips.fseq.w(<4 x float> %0, <4 x float> %1) 548 declare <4 x i32> @llvm.mips.fseq.w(<4 x float>, <4 x float>) nounwind 553 ; CHECK: fseq.w 565 %2 = tail call <2 x i64> @llvm.mips.fseq.d(<2 x double> %0, <2 x double> %1) 570 declare <2 x i64> @llvm.mips.fseq.d(<2 x double>, <2 x double>) nounwind 575 ; CHECK: fseq.d
|
/external/llvm-project/llvm/test/CodeGen/Mips/msa/ |
D | 3rf_int_float.ll | 543 %2 = tail call <4 x i32> @llvm.mips.fseq.w(<4 x float> %0, <4 x float> %1) 548 declare <4 x i32> @llvm.mips.fseq.w(<4 x float>, <4 x float>) nounwind 553 ; CHECK: fseq.w 565 %2 = tail call <2 x i64> @llvm.mips.fseq.d(<2 x double> %0, <2 x double> %1) 570 declare <2 x i64> @llvm.mips.fseq.d(<2 x double>, <2 x double>) nounwind 575 ; CHECK: fseq.d
|
/external/python/cpython2/Objects/ |
D | unicodeobject.c | 5654 PyObject *fseq; /* PySequence_Fast(seq) */ in PyUnicode_Join() local 5659 fseq = PySequence_Fast(seq, "can only join an iterable"); in PyUnicode_Join() 5660 if (fseq == NULL) { in PyUnicode_Join() 5671 seqlen = PySequence_Fast_GET_SIZE(fseq); in PyUnicode_Join() 5679 item = PySequence_Fast_GET_ITEM(fseq, 0); in PyUnicode_Join() 5701 seqlen = PySequence_Fast_GET_SIZE(fseq); in PyUnicode_Join() 5716 item = PySequence_Fast_GET_ITEM(fseq, i); in PyUnicode_Join() 5731 seqlen = PySequence_Fast_GET_SIZE(fseq); in PyUnicode_Join() 5776 Py_DECREF(fseq); in PyUnicode_Join() 5787 Py_DECREF(fseq); in PyUnicode_Join()
|
/external/python/cpython3/Objects/ |
D | unicodeobject.c | 10100 PyObject *fseq; in PyUnicode_Join() local 10104 fseq = PySequence_Fast(seq, "can only join an iterable"); in PyUnicode_Join() 10105 if (fseq == NULL) { in PyUnicode_Join() 10113 items = PySequence_Fast_ITEMS(fseq); in PyUnicode_Join() 10114 seqlen = PySequence_Fast_GET_SIZE(fseq); in PyUnicode_Join() 10116 Py_DECREF(fseq); in PyUnicode_Join()
|
/external/llvm/lib/Target/Mips/ |
D | MipsMSAInstrInfo.td | 2126 class FSEQ_W_DESC : MSA_3RF_DESC_BASE<"fseq.w", int_mips_fseq_w, MSA128WOpnd>; 2127 class FSEQ_D_DESC : MSA_3RF_DESC_BASE<"fseq.d", int_mips_fseq_d, MSA128DOpnd>;
|
/external/llvm-project/llvm/lib/Target/Mips/ |
D | MipsMSAInstrInfo.td | 2145 class FSEQ_W_DESC : MSA_3RF_DESC_BASE<"fseq.w", int_mips_fseq_w, MSA128WOpnd>; 2146 class FSEQ_D_DESC : MSA_3RF_DESC_BASE<"fseq.d", int_mips_fseq_d, MSA128DOpnd>;
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | MipsMSAInstrInfo.td | 2145 class FSEQ_W_DESC : MSA_3RF_DESC_BASE<"fseq.w", int_mips_fseq_w, MSA128WOpnd>; 2146 class FSEQ_D_DESC : MSA_3RF_DESC_BASE<"fseq.d", int_mips_fseq_d, MSA128DOpnd>;
|
/external/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/Mips/ |
D | MipsGenAsmMatcher.inc | 5014 "rint.d\007frint.w\010frsqrt.d\010frsqrt.w\006fsaf.d\006fsaf.w\006fseq.d" 5015 "\006fseq.w\006fsle.d\006fsle.w\006fslt.d\006fslt.w\006fsne.d\006fsne.w\006" 6663 …{ 4699 /* fseq.d */, Mips::FSEQ_D, Convert__MSA128AsmReg1_0__MSA128AsmReg1_1__MSA128AsmReg1_2, AMF… 6664 …{ 4706 /* fseq.w */, Mips::FSEQ_W, Convert__MSA128AsmReg1_0__MSA128AsmReg1_1__MSA128AsmReg1_2, AMF… 9933 { 4699 /* fseq.d */, 7 /* 0, 1, 2 */, MCK_MSA128AsmReg, AMFBS_HasStdEnc_HasMSA }, 9934 { 4706 /* fseq.w */, 7 /* 0, 1, 2 */, MCK_MSA128AsmReg, AMFBS_HasStdEnc_HasMSA },
|
/external/swiftshader/third_party/llvm-subzero/build/Android/include/llvm/IR/ |
D | Intrinsics.gen | 2502 mips_fseq_d, // llvm.mips.fseq.d 2503 mips_fseq_w, // llvm.mips.fseq.w 8560 "llvm.mips.fseq.d", 8561 "llvm.mips.fseq.w", 16500 1, // llvm.mips.fseq.d 16501 1, // llvm.mips.fseq.w
|
/external/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/IR/ |
D | Intrinsics.gen | 2502 mips_fseq_d, // llvm.mips.fseq.d 2503 mips_fseq_w, // llvm.mips.fseq.w 8560 "llvm.mips.fseq.d", 8561 "llvm.mips.fseq.w", 16500 1, // llvm.mips.fseq.d 16501 1, // llvm.mips.fseq.w
|
/external/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/IR/ |
D | Intrinsics.gen | 2502 mips_fseq_d, // llvm.mips.fseq.d 2503 mips_fseq_w, // llvm.mips.fseq.w 8560 "llvm.mips.fseq.d", 8561 "llvm.mips.fseq.w", 16500 1, // llvm.mips.fseq.d 16501 1, // llvm.mips.fseq.w
|
/external/swiftshader/third_party/llvm-subzero/build/Fuchsia/include/llvm/IR/ |
D | Intrinsics.gen | 2502 mips_fseq_d, // llvm.mips.fseq.d 2503 mips_fseq_w, // llvm.mips.fseq.w 8560 "llvm.mips.fseq.d", 8561 "llvm.mips.fseq.w", 16500 1, // llvm.mips.fseq.d 16501 1, // llvm.mips.fseq.w
|
/external/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/IR/ |
D | Intrinsics.gen | 2496 mips_fseq_d, // llvm.mips.fseq.d 2497 mips_fseq_w, // llvm.mips.fseq.w 8520 "llvm.mips.fseq.d", 8521 "llvm.mips.fseq.w", 16405 1, // llvm.mips.fseq.d 16406 1, // llvm.mips.fseq.w
|
/external/swiftshader/third_party/llvm-10.0/configs/common/include/llvm/IR/ |
D | IntrinsicImpl.inc | 3983 "llvm.mips.fseq.d", 3984 "llvm.mips.fseq.w", 14116 1, // llvm.mips.fseq.d 14117 1, // llvm.mips.fseq.w
|