Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/
H A Dpath.factory.pass.cpp32 const char* In1 = "abcd/efg"; in main() local
33 const std::string In2(In1); in main()
37 path p = fs::u8path(In1); in main()
38 assert(p == In1); in main()
42 assert(p == In1); in main()
46 assert(p == In1); in main()
50 assert(p == In1); in main()
60 assert(p == In1); in main()
64 assert(p == In1); in main()
68 assert(p == In1); in main()
[all …]
/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.modifying.operations/alg.transform/
H A Dranges.transform.pass.cpp136 auto range = std::ranges::subrange(In1(a), Sent1(In1(a + 5))); in test_iterators()
165 auto range1 = std::ranges::subrange(In1(a), Sent1(In1(a + 5))); in test_iterators()
192 auto range = std::ranges::subrange(In1(a), Sent1(In1(a))); in test_iterators()
218 auto range1 = std::ranges::subrange(In1(a), Sent1(In1(a))); in test_iterators()
249 auto range1 = std::ranges::subrange(In1(a), Sent1(In1(a + 5))); in test_iterators()
279 auto range1 = std::ranges::subrange(In1(a), Sent1(In1(a))); in test_iterators()
304 auto range = std::ranges::subrange(In1(a), Sent1(In1(a + 1))); in test_iterators()
332 auto range1 = std::ranges::subrange(In1(a), Sent1(In1(a + 1))); in test_iterators()
365 auto range1 = std::ranges::subrange(In1(a), Sent1(In1(a + 5))); in test_iterators()
398 auto range = std::ranges::subrange(In1(a), Sent1(In1(a + 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.cpp109 using Sent1 = SentWrapper<In1>; in testIncludesImpl()
115In1{in1.data()}, Sent1{In1{in1.data() + in1.size()}}, In2{in2.data()}, Sent2{In2{in2.data() + in2.… in testIncludesImpl()
121 std::ranges::subrange r1{In1{in1.data()}, Sent1{In1{in1.data() + in1.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.cpp107 using Sent1 = std::conditional_t<std::contiguous_iterator<In1>, In1, sentinel_wrapper<In1>>; in testSetSymmetricDifferenceImpl()
115 In1{in1.data()}, in testSetSymmetricDifferenceImpl()
116 Sent1{In1{in1.data() + in1.size()}}, in testSetSymmetricDifferenceImpl()
130 std::ranges::subrange r1{In1{in1.data()}, Sent1{In1{in1.data() + in1.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.cpp109 using Sent1 = std::conditional_t<std::contiguous_iterator<In1>, In1, sentinel_wrapper<In1>>; in testSetUnionImpl()
116 In1{in1.data()}, in testSetUnionImpl()
117 Sent1{In1{in1.data() + in1.size()}}, in testSetUnionImpl()
131 std::ranges::subrange r1{In1{in1.data()}, Sent1{In1{in1.data() + in1.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/algorithms/alg.sorting/alg.set.operations/set.intersection/
H A Dranges_set_intersection.pass.cpp103 using Sent1 = std::conditional_t<std::contiguous_iterator<In1>, In1, sentinel_wrapper<In1>>; in testSetIntersectionImpl()
110 In1{in1.data()}, in testSetIntersectionImpl()
111 Sent1{In1{in1.data() + in1.size()}}, in testSetIntersectionImpl()
125 std::ranges::subrange r1{In1{in1.data()}, Sent1{In1{in1.data() + in1.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.set.operations/set.difference/
H A Dranges_set_difference.pass.cpp109 using Sent1 = std::conditional_t<std::contiguous_iterator<In1>, In1, sentinel_wrapper<In1>>; in testSetDifferenceImpl()
116 In1{in1.data()}, in testSetDifferenceImpl()
117 Sent1{In1{in1.data() + in1.size()}}, in testSetDifferenceImpl()
130 std::ranges::subrange r1{In1{in1.data()}, Sent1{In1{in1.data() + in1.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/libcxx/test/std/algorithms/alg.sorting/alg.merge/
H A Dranges_merge.pass.cpp107 using Sent1 = std::conditional_t<std::contiguous_iterator<In1>, In1, sentinel_wrapper<In1>>; in testMergeImpl()
114 In1{in1.data()}, in testMergeImpl()
115 Sent1{In1{in1.data() + in1.size()}}, in testMergeImpl()
129 std::ranges::subrange r1{In1{in1.data()}, Sent1{In1{in1.data() + in1.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/llvm/test/CodeGen/ARM/ParallelDSP/
H A Dsmlaldx-1.ll75 %In1 = load i16, i16* %pIn1.0, align 2
80 %In1.1 = load i16, i16* %pIn1.1, align 2
91 %sextIn1 = sext i16 %In1 to i32
92 %sextIn1.1 = sext i16 %In1.1 to i32
93 %sextIn1.2 = sext i16 %In1.2 to i32
94 %sextIn1.3 = sext i16 %In1.3 to i32
220 %In1.2 = load i16, i16* %pin1, align 2
226 %sextIn1 = sext i16 %In1 to i32
228 %sextIn1.1 = sext i16 %In1.1 to i32
230 %sextIn1.2 = sext i16 %In1.2 to i32
[all …]
H A Dsmlaldx-2.ll75 %In1 = load i16, i16* %pIn1.0, align 2
80 %In1.1 = load i16, i16* %pIn1.1, align 2
91 %sextIn1 = sext i16 %In1 to i32
92 %sextIn1.1 = sext i16 %In1.1 to i32
93 %sextIn1.2 = sext i16 %In1.2 to i32
94 %sextIn1.3 = sext i16 %In1.3 to i32
220 %In1.2 = load i16, i16* %pin1, align 2
226 %sextIn1 = sext i16 %In1 to i32
228 %sextIn1.1 = sext i16 %In1.1 to i32
230 %sextIn1.2 = sext i16 %In1.2 to i32
[all …]
H A Dsmladx-1.ll76 %In1 = load i16, i16* %pIn1.0, align 2
81 %In1.1 = load i16, i16* %pIn1.1, align 2
92 %sextIn1 = sext i16 %In1 to i32
93 %sextIn1.1 = sext i16 %In1.1 to i32
94 %sextIn1.2 = sext i16 %In1.2 to i32
95 %sextIn1.3 = sext i16 %In1.3 to i32
217 %In1.2 = load i16, i16* %pin1, align 2
223 %sextIn1 = sext i16 %In1 to i32
225 %sextIn1.1 = sext i16 %In1.1 to i32
227 %sextIn1.2 = sext i16 %In1.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>
80 Sequence<In1> in1(n, [](size_t k) { return k % 5 != 1 ? 3 * k - 7 : 0; }); 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) {
22 %cond = and i32 %In1, 1
31 define void @bar(i32 %In1, <2 x i96> %In2, <2 x i96> %In3, <2 x i96> *%Out) {
55 %cond = and i32 %In1, 1
/llvm-project-15.0.7/polly/test/ScopInfo/
H A Dcomplex-successor-structure.ll154 %5 = load i16, i16* %In1, align 2
166 %arrayidx53.1 = getelementptr inbounds i16, i16* %In1, i32 1
180 %arrayidx53.2 = getelementptr inbounds i16, i16* %In1, i32 2
194 %arrayidx53.3 = getelementptr inbounds i16, i16* %In1, i32 3
208 %arrayidx53.4 = getelementptr inbounds i16, i16* %In1, i32 4
222 %arrayidx53.5 = getelementptr inbounds i16, i16* %In1, i32 5
236 %arrayidx53.6 = getelementptr inbounds i16, i16* %In1, i32 6
250 %arrayidx53.7 = getelementptr inbounds i16, i16* %In1, i32 7
264 %arrayidx53.8 = getelementptr inbounds i16, i16* %In1, i32 8
278 %arrayidx53.9 = getelementptr inbounds i16, i16* %In1, i32 9
[all …]
H A Dcomplex-successor-structure-2.ll155 %5 = load i16, i16* %In1, align 2
167 %arrayidx53.1 = getelementptr inbounds i16, i16* %In1, i32 1
181 %arrayidx53.2 = getelementptr inbounds i16, i16* %In1, i32 2
195 %arrayidx53.3 = getelementptr inbounds i16, i16* %In1, i32 3
209 %arrayidx53.4 = getelementptr inbounds i16, i16* %In1, i32 4
223 %arrayidx53.5 = getelementptr inbounds i16, i16* %In1, i32 5
237 %arrayidx53.6 = getelementptr inbounds i16, i16* %In1, i32 6
251 %arrayidx53.7 = getelementptr inbounds i16, i16* %In1, i32 7
265 %arrayidx53.8 = getelementptr inbounds i16, i16* %In1, i32 8
279 %arrayidx53.9 = getelementptr inbounds i16, i16* %In1, i32 9
[all …]
/llvm-project-15.0.7/clang-tools-extra/pseudo/unittests/
H A DGLRTest.cpp452 const auto *In1 = GSStack.addNode(1, Brace1, {Root}); in TEST_F() local
453 const auto *In2 = GSStack.addNode(1, Brace2, {In1}); in TEST_F()
/llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp39 static bool addWithOverflow(APInt &Result, const APInt &In1, in addWithOverflow() argument
43 Result = In1.sadd_ov(In2, Overflow); in addWithOverflow()
45 Result = In1.uadd_ov(In2, Overflow); in addWithOverflow()
52 static bool subWithOverflow(APInt &Result, const APInt &In1, 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/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()
4634 EVT HalfVT = In1.getValueType(); in ExpandIntRes_FunnelShift()
4654 SDValue Select1 = DAG.getNode(ISD::SELECT, DL, HalfVT, Cond, In1, In2); in ExpandIntRes_FunnelShift()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp7728 SDValue In1 = Op.getOperand(0); in LowerFCOPYSIGN() local
7756 DAG.getTargetInsertSubreg(Idx, DL, VecVT, DAG.getUNDEF(VecVT), In1); in LowerFCOPYSIGN()
7760 VecVal1 = BitCast(VecVT, In1, DAG); in LowerFCOPYSIGN()
7780 unsigned BitWidth = In1.getScalarValueSizeInBits(); in LowerFCOPYSIGN()
19448 SDValue In1 = N->getOperand(1); in performBSPExpandForSVE() local
19452 SDValue Sel = DAG.getNode(ISD::AND, DL, VT, Mask, In1); in performBSPExpandForSVE()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp53440 SDValue In0, In1; in matchPMADDWD_2() local
53479 In1 = N01In; in matchPMADDWD_2()
53484 In1.getValueSizeInBits() < VT.getSizeInBits()) in matchPMADDWD_2()
53493 if (In0 != N00In || In1 != N01In || In0 != N10In || In1 != N11In) in matchPMADDWD_2()
53516 if (OutVT16.bitsLT(In1.getValueType())) { in matchPMADDWD_2()
53517 In1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, OutVT16, In1, in matchPMADDWD_2()
53520 return SplitOpsAndApply(DAG, Subtarget, DL, VT, { In0, In1 }, in matchPMADDWD_2()
/llvm-project-15.0.7/llvm/docs/
H A DLangRef.rst9489 | In0 | In1 | Out |
9540 | In0 | In1 | Out |
9592 | In0 | In1 | Out |