Home
last modified time | relevance | path

Searched refs:In2 (Results 1 – 21 of 21) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.modifying.operations/alg.transform/
H A Dranges.transform.pass.cpp166 auto range2 = std::ranges::subrange(In2(b), Sent2(In2(b + 5))); in test_iterators()
206 … In1(a), Sent1(In1(a)), In2(b), Sent2(In2(b + 5)), Out(c), [](int i, int j) { return i + j; }); in test_iterators()
219 auto range2 = std::ranges::subrange(In2(b), Sent2(In2(b + 5))); in test_iterators()
237 … In1(a), Sent1(In1(a + 5)), In2(b), Sent2(In2(b)), Out(c), [](int i, int j) { return i + j; }); in test_iterators()
250 auto range2 = std::ranges::subrange(In2(b), Sent2(In2(b))); in test_iterators()
267 In1(a), Sent1(In1(a)), In2(b), Sent2(In2(b)), Out(c), [](int i, int j) { return i + j; }); in test_iterators()
280 auto range2 = std::ranges::subrange(In2(b), Sent2(In2(b))); in test_iterators()
333 auto range2 = std::ranges::subrange(In2(b), Sent2(In2(b + 5))); in test_iterators()
366 auto range2 = std::ranges::subrange(In2(b), Sent2(In2(b + 1))); in test_iterators()
433 auto range2 = std::ranges::subrange(In2(b), Sent2(In2(b + 4))); in test_iterators()
[all …]
/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/includes/
H A Dranges_includes.pass.cpp110 using Sent2 = SentWrapper<In2>; in testIncludesImpl()
115 …In1{in1.data()}, Sent1{In1{in1.data() + in1.size()}}, In2{in2.data()}, Sent2{In2{in2.data() + in2.… in testIncludesImpl()
122 std::ranges::subrange r2{In2{in2.data()}, Sent2{In2{in2.data() + in2.size()}}}; in testIncludesImpl()
135 testIncludesImpl<In1, In2, SentWrapper>(in1, in2, expected); in testImpl()
142 testIncludesImpl<In1, In2, SentWrapper>(in1, in2, expected); in testImpl()
150 testIncludesImpl<In1, In2, SentWrapper>(in1, in2, expected); in testImpl()
158 testIncludesImpl<In1, In2, SentWrapper>(in1, in2, expected); in testImpl()
166 testIncludesImpl<In1, In2, SentWrapper>(in1, in2, expected); in testImpl()
174 testIncludesImpl<In1, In2, SentWrapper>(in1, in2, expected); in testImpl()
182 testIncludesImpl<In1, In2, SentWrapper>(in1, in2, expected); in testImpl()
[all …]
/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/
H A Dranges_set_symmetric_difference.pass.cpp108 using Sent2 = std::conditional_t<std::contiguous_iterator<In2>, In2, sentinel_wrapper<In2>>; in testSetSymmetricDifferenceImpl()
117 In2{in2.data()}, in testSetSymmetricDifferenceImpl()
118 Sent2{In2{in2.data() + in2.size()}}, in testSetSymmetricDifferenceImpl()
131 std::ranges::subrange r2{In2{in2.data()}, Sent2{In2{in2.data() + in2.size()}}}; in testSetSymmetricDifferenceImpl()
142 template <class In1, class In2, class Out>
149 testSetSymmetricDifferenceImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
157 testSetSymmetricDifferenceImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
165 testSetSymmetricDifferenceImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
173 testSetSymmetricDifferenceImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
181 testSetSymmetricDifferenceImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
[all …]
/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.union/
H A Dranges_set_union.pass.cpp110 using Sent2 = std::conditional_t<std::contiguous_iterator<In2>, In2, sentinel_wrapper<In2>>; in testSetUnionImpl()
118 In2{in2.data()}, in testSetUnionImpl()
119 Sent2{In2{in2.data() + in2.size()}}, in testSetUnionImpl()
132 std::ranges::subrange r2{In2{in2.data()}, Sent2{In2{in2.data() + in2.size()}}}; in testSetUnionImpl()
143 template <class In1, class In2, class Out>
150 testSetUnionImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
157 testSetUnionImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
165 testSetUnionImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
173 testSetUnionImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
181 testSetUnionImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
[all …]
/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/
H A Dpath.factory.pass.cpp33 const std::string In2(In1); in main() local
34 const auto In3 = In2.begin(); in main()
35 const auto In3End = In2.end(); in main()
41 path p = fs::u8path(In2); in main()
45 path p = fs::u8path(In2.data()); in main()
/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.intersection/
H A Dranges_set_intersection.pass.cpp104 using Sent2 = std::conditional_t<std::contiguous_iterator<In2>, In2, sentinel_wrapper<In2>>; in testSetIntersectionImpl()
112 In2{in2.data()}, in testSetIntersectionImpl()
113 Sent2{In2{in2.data() + in2.size()}}, in testSetIntersectionImpl()
126 std::ranges::subrange r2{In2{in2.data()}, Sent2{In2{in2.data() + in2.size()}}}; in testSetIntersectionImpl()
137 template <class In1, class In2, class Out>
144 testSetIntersectionImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
152 testSetIntersectionImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
160 testSetIntersectionImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
168 testSetIntersectionImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
176 testSetIntersectionImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
[all …]
/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.sorting/alg.merge/
H A Dranges_merge.pass.cpp108 using Sent2 = std::conditional_t<std::contiguous_iterator<In2>, In2, sentinel_wrapper<In2>>; in testMergeImpl()
116 In2{in2.data()}, in testMergeImpl()
117 Sent2{In2{in2.data() + in2.size()}}, in testMergeImpl()
130 std::ranges::subrange r2{In2{in2.data()}, Sent2{In2{in2.data() + in2.size()}}}; in testMergeImpl()
140 template <class In1, class In2, class Out>
147 testMergeImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
155 testMergeImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
163 testMergeImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
171 testMergeImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
179 testMergeImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
[all …]
/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.difference/
H A Dranges_set_difference.pass.cpp110 using Sent2 = std::conditional_t<std::contiguous_iterator<In2>, In2, sentinel_wrapper<In2>>; in testSetDifferenceImpl()
118 In2{in2.data()}, in testSetDifferenceImpl()
119 Sent2{In2{in2.data() + in2.size()}}, in testSetDifferenceImpl()
131 std::ranges::subrange r2{In2{in2.data()}, Sent2{In2{in2.data() + in2.size()}}}; in testSetDifferenceImpl()
141 template <class In1, class In2, class Out>
148 testSetDifferenceImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
156 testSetDifferenceImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
164 testSetDifferenceImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
172 testSetDifferenceImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
180 testSetDifferenceImpl<In1, In2, Out>(in1, in2, expected); in testImpl()
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/ParallelDSP/
H A Dsmlaldx-1.ll73 %In2 = load i16, i16* %pIn2.0, align 2
78 %In2.1 = load i16, i16* %pIn2.1, align 2
95 %sextIn2 = sext i16 %In2 to i32
96 %sextIn2.1 = sext i16 %In2.1 to i32
97 %sextIn2.2 = sext i16 %In2.2 to i32
98 %sextIn2.3 = sext i16 %In2.3 to i32
215 %In2.1 = load i16, i16* %pin2, align 2
225 %sextIn2 = sext i16 %In2 to i32
227 %sextIn2.1 = sext i16 %In2.1 to i32
229 %sextIn2.2 = sext i16 %In2.2 to i32
[all …]
H A Dsmlaldx-2.ll73 %In2 = load i16, i16* %pIn2.0, align 2
78 %In2.1 = load i16, i16* %pIn2.1, align 2
95 %sextIn2 = sext i16 %In2 to i32
96 %sextIn2.1 = sext i16 %In2.1 to i32
97 %sextIn2.2 = sext i16 %In2.2 to i32
98 %sextIn2.3 = sext i16 %In2.3 to i32
215 %In2.1 = load i16, i16* %pin2, align 2
225 %sextIn2 = sext i16 %In2 to i32
227 %sextIn2.1 = sext i16 %In2.1 to i32
229 %sextIn2.2 = sext i16 %In2.2 to i32
[all …]
H A Dsmladx-1.ll74 %In2 = load i16, i16* %pIn2.0, align 2
79 %In2.1 = load i16, i16* %pIn2.1, align 2
96 %sextIn2 = sext i16 %In2 to i32
97 %sextIn2.1 = sext i16 %In2.1 to i32
98 %sextIn2.2 = sext i16 %In2.2 to i32
99 %sextIn2.3 = sext i16 %In2.3 to i32
212 %In2.1 = load i16, i16* %pin2, align 2
222 %sextIn2 = sext i16 %In2 to i32
224 %sextIn2.1 = sext i16 %In2.1 to i32
226 %sextIn2.2 = sext i16 %In2.2 to i32
[all …]
/llvm-project-15.0.7/pstl/test/std/algorithms/alg.modifying.operations/
H A Dtransform_binary.pass.cpp21 template <typename In1, typename In2, typename Out>
29 operator()(const In1& x, const In2& y) const in operator ()()
74 template <typename In1, typename In2, typename Out, typename Predicate>
81 Sequence<In2> in2(n, [](size_t k) { return k % 7 != 2 ? 5 * k - 5 : 0; }); in test()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DSerializationTests.cpp224 auto In2 = readIndexFile(Serialized); in TEST() local
225 ASSERT_TRUE(bool(In2)) << In.takeError(); in TEST()
226 ASSERT_TRUE(In2->Symbols); in TEST()
227 ASSERT_TRUE(In2->Refs); in TEST()
228 ASSERT_TRUE(In2->Relations); in TEST()
231 EXPECT_THAT(yamlFromSymbols(*In2->Symbols), in TEST()
233 EXPECT_THAT(yamlFromRefs(*In2->Refs), in TEST()
235 EXPECT_THAT(yamlFromRelations(*In2->Relations), in TEST()
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Dexpand-select.ll4 define void @foo(i32 %In1, <2 x i128> %In2, <2 x i128> %In3, <2 x i128> *%Out) {
24 %res = select i1 %cbool, <2 x i128> %In2, <2 x i128> %In3
31 define void @bar(i32 %In1, <2 x i96> %In2, <2 x i96> %In3, <2 x i96> *%Out) {
57 %res = select i1 %cbool, <2 x i96> %In2, <2 x i96> %In3
/llvm-project-15.0.7/clang-tools-extra/pseudo/unittests/
H A DGLRTest.cpp453 const auto *In2 = GSStack.addNode(1, Brace2, {In1}); in TEST_F() local
454 const auto *In3 = GSStack.addNode(1, Brace3, {In2}); in TEST_F()
461 parents({In2}), start(2u)))); in TEST_F()
/llvm-project-15.0.7/polly/test/ScopInfo/
H A Dcomplex-successor-structure-2.ll112 … nocapture %Output, i16* nocapture readonly %In1, i16* nocapture readonly %In2, i16 signext %var, …
130 %arrayidx36 = getelementptr inbounds i16, i16* %In2, i32 %i.2138
135 %arrayidx36.1 = getelementptr inbounds i16, i16* %In2, i32 %add35.1
140 %arrayidx36.2 = getelementptr inbounds i16, i16* %In2, i32 %add35.2
H A Dcomplex-successor-structure.ll111 … nocapture %Output, i16* nocapture readonly %In1, i16* nocapture readonly %In2, i16 signext %var, …
129 %arrayidx36 = getelementptr inbounds i16, i16* %In2, i32 %i.2138
134 %arrayidx36.1 = getelementptr inbounds i16, i16* %In2, i32 %add35.1
139 %arrayidx36.2 = getelementptr inbounds i16, i16* %In2, i32 %add35.2
/llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp40 const APInt &In2, bool IsSigned = false) { in addWithOverflow() argument
43 Result = In1.sadd_ov(In2, Overflow); in addWithOverflow()
45 Result = In1.uadd_ov(In2, Overflow); in addWithOverflow()
53 const APInt &In2, bool IsSigned = false) { in subWithOverflow() argument
56 Result = In1.ssub_ov(In2, Overflow); in subWithOverflow()
58 Result = In1.usub_ov(In2, Overflow); in subWithOverflow()
/llvm-project-15.0.7/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp9106 SDValue In2 = N->getOperand(1); in PerformDAGCombine() local
9109 if (!In2.hasOneUse()) in PerformDAGCombine()
9111 if (In2.getOpcode() != ISD::FP_EXTEND && in PerformDAGCombine()
9112 (In2.getOpcode() != ISD::FP_ROUND || In2.getConstantOperandVal(1) != 0)) in PerformDAGCombine()
9114 In2 = In2.getOperand(0); in PerformDAGCombine()
9115 if (In2.getOpcode() != ISD::FNEG) in PerformDAGCombine()
9118 SDValue NewFPExtRound = DAG.getFPExtendOrRound(In2.getOperand(0), DL, VT); in PerformDAGCombine()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp4631 SDValue In1, In2, In3, In4; in ExpandIntRes_FunnelShift() local
4633 GetExpandedInteger(N->getOperand(1), In1, In2); in ExpandIntRes_FunnelShift()
4654 SDValue Select1 = DAG.getNode(ISD::SELECT, DL, HalfVT, Cond, In1, In2); in ExpandIntRes_FunnelShift()
4655 SDValue Select2 = DAG.getNode(ISD::SELECT, DL, HalfVT, Cond, In2, In3); in ExpandIntRes_FunnelShift()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp7729 SDValue In2 = Op.getOperand(1); in LowerFCOPYSIGN() local
7730 EVT SrcVT = In2.getValueType(); in LowerFCOPYSIGN()
7733 In2 = DAG.getNode(ISD::FP_EXTEND, DL, VT, In2); in LowerFCOPYSIGN()
7735 In2 = DAG.getNode(ISD::FP_ROUND, DL, VT, In2, DAG.getIntPtrConstant(0, DL)); in LowerFCOPYSIGN()
7741 if (VT != In2.getValueType()) in LowerFCOPYSIGN()
7758 DAG.getTargetInsertSubreg(Idx, DL, VecVT, DAG.getUNDEF(VecVT), In2); in LowerFCOPYSIGN()
7761 VecVal2 = BitCast(VecVT, In2, DAG); in LowerFCOPYSIGN()
19449 SDValue In2 = N->getOperand(2); in performBSPExpandForSVE() local
19453 SDValue SelInv = DAG.getNode(ISD::AND, DL, VT, InvMask, In2); in performBSPExpandForSVE()