Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/
DRange.cpp25 auto It2 = It; in insert() local
26 while (It2 != Ranges.end() && It2->Start < Range.End) in insert()
27 ++It2; in insert()
28 if (It != It2) { in insert()
29 Range.End = std::max(Range.End, It2[-1].End); in insert()
30 It = Ranges.erase(It, It2); in insert()
/external/llvm-project/llvm/lib/DebugInfo/GSYM/
DRange.cpp25 auto It2 = It; in insert() local
26 while (It2 != Ranges.end() && It2->Start < Range.End) in insert()
27 ++It2; in insert()
28 if (It != It2) { in insert()
29 Range.End = std::max(Range.End, It2[-1].End); in insert()
30 It = Ranges.erase(It, It2); in insert()
/external/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opdiff/
Dtest.pass.cpp28 template <class It1, class It2>
30 test(It1 l, It2 r, std::ptrdiff_t x) in test()
33 const std::reverse_iterator<It2> r2(r); in test()
/external/llvm-project/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opdiff/
Dtest.pass.cpp27 template <class It1, class It2>
29 test(It1 l, It2 r, std::ptrdiff_t x) in test()
32 const std::reverse_iterator<It2> r2(r); in test()
/external/libcxx/test/support/
Dverbose_assert.h159 template <class It1, class It2, class Comp>
160 AssertData CheckCollectionsEqual(It1 F1, It1 E1, It2 F2, It2 E2,
163 const It2 F2Orig = F2;
/external/llvm-project/pstl/test/std/algorithms/alg.modifying.operations/
Drotate_copy.pass.cpp56 template <typename T, typename It1, typename It2>
60 using T2 = typename std::iterator_traits<It2>::value_type;
/external/llvm/include/llvm/ADT/
DSmallVector.h189 template<typename It1, typename It2>
190 static void uninitialized_move(It1 I, It1 E, It2 Dest) { in uninitialized_move()
197 template<typename It1, typename It2>
198 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
267 template<typename It1, typename It2>
268 static void uninitialized_move(It1 I, It1 E, It2 Dest) { in uninitialized_move()
275 template<typename It1, typename It2>
276 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSmallVector.h192 template<typename It1, typename It2>
193 static void uninitialized_move(It1 I, It1 E, It2 Dest) { in uninitialized_move()
200 template<typename It1, typename It2>
201 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
270 template<typename It1, typename It2>
271 static void uninitialized_move(It1 I, It1 E, It2 Dest) { in uninitialized_move()
278 template<typename It1, typename It2>
279 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSmallVector.h192 template<typename It1, typename It2>
193 static void uninitialized_move(It1 I, It1 E, It2 Dest) { in uninitialized_move()
200 template<typename It1, typename It2>
201 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
268 template<typename It1, typename It2>
269 static void uninitialized_move(It1 I, It1 E, It2 Dest) { in uninitialized_move()
276 template<typename It1, typename It2>
277 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
/external/llvm-project/llvm/include/llvm/ADT/
DSmallVector.h297 template<typename It1, typename It2>
298 static void uninitialized_move(It1 I, It1 E, It2 Dest) { in uninitialized_move()
305 template<typename It1, typename It2>
306 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
386 template<typename It1, typename It2>
387 static void uninitialized_move(It1 I, It1 E, It2 Dest) { in uninitialized_move()
394 template<typename It1, typename It2>
395 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
/external/llvm/lib/Target/Hexagon/
DHexagonGenMux.cpp262 MachineBasicBlock::iterator It1 = B.begin(), It2 = B.begin(); in genMuxInBlock() local
264 std::advance(It2, MaxX); in genMuxInBlock()
265 MachineInstr &Def1 = *It1, &Def2 = *It2; in genMuxInBlock()
/external/llvm/lib/CodeGen/
DSplitKit.cpp768 SmallPtrSetIterator<VNInfo *> It2 = It1; in computeRedundantBackCopies() local
770 It2 = It1; in computeRedundantBackCopies()
771 for (++It2; It2 != EqualVNs[ParentVNI->id].end(); ++It2) { in computeRedundantBackCopies()
772 if (DominatedVNIs.count(*It1) || DominatedVNIs.count(*It2)) in computeRedundantBackCopies()
776 MachineBasicBlock *MBB2 = LIS.getMBBFromIndex((*It2)->def); in computeRedundantBackCopies()
778 DominatedVNIs.insert((*It1)->def < (*It2)->def ? (*It2) : (*It1)); in computeRedundantBackCopies()
780 DominatedVNIs.insert(*It2); in computeRedundantBackCopies()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonGenMux.cpp301 MachineBasicBlock::iterator It1 = B.begin(), It2 = B.begin(); in genMuxInBlock() local
303 std::advance(It2, MaxX); in genMuxInBlock()
304 MachineInstr &Def1 = *It1, &Def2 = *It2; in genMuxInBlock()
/external/llvm-project/llvm/lib/Target/Hexagon/
DHexagonGenMux.cpp301 MachineBasicBlock::iterator It1 = B.begin(), It2 = B.begin(); in genMuxInBlock() local
303 std::advance(It2, MaxX); in genMuxInBlock()
304 MachineInstr &Def1 = *It1, &Def2 = *It2; in genMuxInBlock()
/external/llvm-project/llvm/lib/CodeGen/
DSplitKit.cpp981 SmallPtrSetIterator<VNInfo *> It2 = It1; in computeRedundantBackCopies() local
983 It2 = It1; in computeRedundantBackCopies()
984 for (++It2; It2 != EqualVNs[ParentVNI->id].end(); ++It2) { in computeRedundantBackCopies()
985 if (DominatedVNIs.count(*It1) || DominatedVNIs.count(*It2)) in computeRedundantBackCopies()
989 MachineBasicBlock *MBB2 = LIS.getMBBFromIndex((*It2)->def); in computeRedundantBackCopies()
991 DominatedVNIs.insert((*It1)->def < (*It2)->def ? (*It2) : (*It1)); in computeRedundantBackCopies()
993 DominatedVNIs.insert(*It2); in computeRedundantBackCopies()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DSplitKit.cpp969 SmallPtrSetIterator<VNInfo *> It2 = It1; in computeRedundantBackCopies() local
971 It2 = It1; in computeRedundantBackCopies()
972 for (++It2; It2 != EqualVNs[ParentVNI->id].end(); ++It2) { in computeRedundantBackCopies()
973 if (DominatedVNIs.count(*It1) || DominatedVNIs.count(*It2)) in computeRedundantBackCopies()
977 MachineBasicBlock *MBB2 = LIS.getMBBFromIndex((*It2)->def); in computeRedundantBackCopies()
979 DominatedVNIs.insert((*It1)->def < (*It2)->def ? (*It2) : (*It1)); in computeRedundantBackCopies()
981 DominatedVNIs.insert(*It2); in computeRedundantBackCopies()
/external/clang/include/clang/AST/
DASTVector.h211 template<typename It1, typename It2>
212 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
/external/llvm-project/clang/include/clang/AST/
DASTVector.h214 template<typename It1, typename It2>
215 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
/external/llvm/unittests/Support/
DPath.cpp346 auto It2 = path::rbegin(CacheDir2); in TEST() local
347 EXPECT_EQ("\xE2\x84\xB5.0", *It2); in TEST()
348 EXPECT_EQ("\xCF\x80r\xC2\xB2", *++It2); in TEST()
349 auto ParentDir2 = *++It2; in TEST()
/external/llvm/include/llvm/Analysis/
DBlockFrequencyInfoImpl.h216 template <class It1, class It2>
217 LoopData(LoopData *Parent, It1 FirstHeader, It1 LastHeader, It2 FirstOther,
218 It2 LastOther)
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DBlockFrequencyInfoImpl.h231 template <class It1, class It2>
232 LoopData(LoopData *Parent, It1 FirstHeader, It1 LastHeader, It2 FirstOther, in LoopData()
233 It2 LastOther) in LoopData()
/external/llvm-project/llvm/include/llvm/Analysis/
DBlockFrequencyInfoImpl.h235 template <class It1, class It2>
236 LoopData(LoopData *Parent, It1 FirstHeader, It1 LastHeader, It2 FirstOther, in LoopData()
237 It2 LastOther) in LoopData()
/external/llvm-project/llvm/tools/llvm-objcopy/
DCopyConfig.cpp938 auto It2 = find_if(Config.RPathsToRemove, Match); in parseInstallNameToolOptions() local
939 if (It2 != Config.RPathsToRemove.end()) in parseInstallNameToolOptions()
941 "cannot specify both -delete_rpath '" + *It2 + in parseInstallNameToolOptions()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp889 auto It2 = InLookAheadValues.find(U); in getExternalUsesCost() local
890 if (It2 != InLookAheadValues.end()) { in getExternalUsesCost()
892 if (It2->second != Ln) in getExternalUsesCost()
2273 nodes_iterator(const ItTy &It2) : It(It2) {} in nodes_iterator() argument
/external/llvm-project/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp994 auto It2 = InLookAheadValues.find(U); in getExternalUsesCost() local
995 if (It2 != InLookAheadValues.end()) { in getExternalUsesCost()
997 if (It2->second != Ln) in getExternalUsesCost()
2428 nodes_iterator(const ItTy &It2) : It(It2) {} in nodes_iterator() argument