Searched refs:Iter2 (Results 1 – 6 of 6) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | SparseBitVector.h | 547 ElementListConstIter Iter2 = RHS.Elements.begin(); 549 for (; Iter1 != Elements.end() && Iter2 != RHS.Elements.end(); 550 ++Iter1, ++Iter2) { 551 if (*Iter1 != *Iter2) 554 return Iter1 == Elements.end() && Iter2 == RHS.Elements.end(); 564 ElementListConstIter Iter2 = RHS.Elements.begin(); 570 while (Iter2 != RHS.Elements.end()) { 571 if (Iter1 == Elements.end() || Iter1->index() > Iter2->index()) { 572 Elements.insert(Iter1, *Iter2); 573 ++Iter2; [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | MismatchedIteratorChecker.cpp | 38 const SVal &Iter2) const; 243 const SVal &Iter2) const { in verifyMatch() 261 const auto *Pos2 = getIteratorPosition(State, Iter2); in verifyMatch() 276 "same container is expected.", Iter1, Iter2, C, N); in verifyMatch()
|
| H A D | ContainerModeling.cpp | 50 void handleErase(CheckerContext &C, SVal Cont, SVal Iter1, SVal Iter2) const; 53 SVal Iter2) const; 625 SVal Iter2) const { in handleErase() 633 const auto *Pos2 = getIteratorPosition(State, Iter2); in handleErase() 682 SVal Iter1, SVal Iter2) const { in handleEraseAfter() 685 const auto *Pos2 = getIteratorPosition(State, Iter2); in handleEraseAfter()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/ |
| H A D | llvm-objdump.cpp | 1797 auto Iter2 = AllLabels.find(SectionAddr + Index); in disassembleObject() local 1798 if (Iter2 != AllLabels.end()) in disassembleObject() 1799 FOS << "<" << Iter2->second << ">:\n"; in disassembleObject()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroFrame.cpp | 687 sort(FrameData.Allocas, [&](const auto &Iter1, const auto &Iter2) { in addFieldForAllocas() argument 688 return GetAllocaSize(Iter1) > GetAllocaSize(Iter2); in addFieldForAllocas()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.cpp | 4603 auto Iter2 = llvm::find_if(ParamDbgMappings, [&](auto &DbgPair) { in EmitDeclare() local 4606 if (Iter2 != ParamDbgMappings.end()) in EmitDeclare() 4607 return const_cast<llvm::DILocalVariable *>(Iter2->second); in EmitDeclare()
|