/external/libcxx/test/support/ |
D | verbose_assert.h | 130 template <class It1> 131 std::string PrintRange(const char* Name, It1 F, It1 E) { 159 template <class It1, class It2, class Comp> 160 AssertData CheckCollectionsEqual(It1 F1, It1 E1, It2 F2, It2 E2, 162 const It1 F1Orig = F1;
|
/external/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opdiff/ |
D | test.pass.cpp | 28 template <class It1, class It2> 30 test(It1 l, It2 r, std::ptrdiff_t x) in test() 32 const std::reverse_iterator<It1> r1(l); in test()
|
/external/llvm-project/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opdiff/ |
D | test.pass.cpp | 27 template <class It1, class It2> 29 test(It1 l, It2 r, std::ptrdiff_t x) in test() 31 const std::reverse_iterator<It1> r1(l); in test()
|
/external/llvm/include/llvm/ADT/ |
D | SmallVector.h | 189 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/ |
D | SmallVector.h | 192 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/ |
D | SmallVector.h | 192 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/ |
D | SmallVector.h | 297 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-project/llvm/unittests/ADT/ |
D | CoalescingBitVectorTest.cpp | 127 auto It1 = BV.begin(); in TEST() local 128 EXPECT_TRUE(It1 == BV.begin()); in TEST() 129 EXPECT_TRUE(++It1 == ++BV.begin()); in TEST() 130 EXPECT_TRUE(It1 != BV.begin()); in TEST() 131 EXPECT_TRUE(It1 != BV.end()); in TEST()
|
/external/llvm-project/pstl/test/std/algorithms/alg.modifying.operations/ |
D | rotate_copy.pass.cpp | 56 template <typename T, typename It1, typename It2> 59 using T1 = typename std::iterator_traits<It1>::value_type;
|
/external/llvm-project/llvm/lib/Frontend/OpenMP/ |
D | OMPContext.cpp | 100 auto It1 = C1.begin(), End1 = C1.end(); in isSubset() local 102 if (It1 == End1) in isSubset() 104 if (*It0 == *It1) { in isSubset() 106 ++It1; in isSubset()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonGenMux.cpp | 262 MachineBasicBlock::iterator It1 = B.begin(), It2 = B.begin(); in genMuxInBlock() local 263 std::advance(It1, MinX); in genMuxInBlock() 265 MachineInstr &Def1 = *It1, &Def2 = *It2; in genMuxInBlock()
|
/external/llvm/lib/CodeGen/ |
D | SplitKit.cpp | 767 SmallPtrSetIterator<VNInfo *> It1 = EqualVNs[ParentVNI->id].begin(); in computeRedundantBackCopies() local 768 SmallPtrSetIterator<VNInfo *> It2 = It1; in computeRedundantBackCopies() 769 for (; It1 != EqualVNs[ParentVNI->id].end(); ++It1) { in computeRedundantBackCopies() 770 It2 = It1; in computeRedundantBackCopies() 772 if (DominatedVNIs.count(*It1) || DominatedVNIs.count(*It2)) in computeRedundantBackCopies() 775 MachineBasicBlock *MBB1 = LIS.getMBBFromIndex((*It1)->def); in computeRedundantBackCopies() 778 DominatedVNIs.insert((*It1)->def < (*It2)->def ? (*It2) : (*It1)); in computeRedundantBackCopies() 782 DominatedVNIs.insert(*It1); in computeRedundantBackCopies()
|
/external/llvm-project/llvm/lib/Target/Hexagon/ |
D | HexagonGenMux.cpp | 301 MachineBasicBlock::iterator It1 = B.begin(), It2 = B.begin(); in genMuxInBlock() local 302 std::advance(It1, MinX); in genMuxInBlock() 304 MachineInstr &Def1 = *It1, &Def2 = *It2; in genMuxInBlock()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonGenMux.cpp | 301 MachineBasicBlock::iterator It1 = B.begin(), It2 = B.begin(); in genMuxInBlock() local 302 std::advance(It1, MinX); in genMuxInBlock() 304 MachineInstr &Def1 = *It1, &Def2 = *It2; in genMuxInBlock()
|
/external/llvm-project/clang/include/clang/AST/ |
D | ASTVector.h | 214 template<typename It1, typename It2> 215 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
|
/external/clang/include/clang/AST/ |
D | ASTVector.h | 211 template<typename It1, typename It2> 212 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | SplitKit.cpp | 980 SmallPtrSetIterator<VNInfo *> It1 = EqualVNs[ParentVNI->id].begin(); in computeRedundantBackCopies() local 981 SmallPtrSetIterator<VNInfo *> It2 = It1; in computeRedundantBackCopies() 982 for (; It1 != EqualVNs[ParentVNI->id].end(); ++It1) { in computeRedundantBackCopies() 983 It2 = It1; in computeRedundantBackCopies() 985 if (DominatedVNIs.count(*It1) || DominatedVNIs.count(*It2)) in computeRedundantBackCopies() 988 MachineBasicBlock *MBB1 = LIS.getMBBFromIndex((*It1)->def); in computeRedundantBackCopies() 991 DominatedVNIs.insert((*It1)->def < (*It2)->def ? (*It2) : (*It1)); in computeRedundantBackCopies() 995 DominatedVNIs.insert(*It1); in computeRedundantBackCopies()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | SplitKit.cpp | 968 SmallPtrSetIterator<VNInfo *> It1 = EqualVNs[ParentVNI->id].begin(); in computeRedundantBackCopies() local 969 SmallPtrSetIterator<VNInfo *> It2 = It1; in computeRedundantBackCopies() 970 for (; It1 != EqualVNs[ParentVNI->id].end(); ++It1) { in computeRedundantBackCopies() 971 It2 = It1; in computeRedundantBackCopies() 973 if (DominatedVNIs.count(*It1) || DominatedVNIs.count(*It2)) in computeRedundantBackCopies() 976 MachineBasicBlock *MBB1 = LIS.getMBBFromIndex((*It1)->def); in computeRedundantBackCopies() 979 DominatedVNIs.insert((*It1)->def < (*It2)->def ? (*It2) : (*It1)); in computeRedundantBackCopies() 983 DominatedVNIs.insert(*It1); in computeRedundantBackCopies()
|
/external/llvm-project/polly/lib/CodeGen/ |
D | IslAst.cpp | 350 const Scop::MinMaxAccessTy *It1) { in buildCondition() argument 354 isl::pw_multi_aff BFirst = It1->first; in buildCondition() 355 isl::pw_multi_aff BSecond = It1->second; in buildCondition()
|
/external/llvm-project/llvm/tools/llvm-objcopy/ |
D | CopyConfig.cpp | 926 auto It1 = find_if( in parseInstallNameToolOptions() local 931 if (It1 != Config.RPathsToUpdate.end()) in parseInstallNameToolOptions() 934 It1->getFirst() + "' '" + It1->getSecond() + in parseInstallNameToolOptions()
|
/external/llvm/include/llvm/Analysis/ |
D | BlockFrequencyInfoImpl.h | 216 template <class It1, class It2> 217 LoopData(LoopData *Parent, It1 FirstHeader, It1 LastHeader, It2 FirstOther,
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | BlockFrequencyInfoImpl.h | 231 template <class It1, class It2> 232 LoopData(LoopData *Parent, It1 FirstHeader, It1 LastHeader, It2 FirstOther, in LoopData()
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | BlockFrequencyInfoImpl.h | 235 template <class It1, class It2> 236 LoopData(LoopData *Parent, It1 FirstHeader, It1 LastHeader, It2 FirstOther, in LoopData()
|