Home
last modified time | relevance | path

Searched refs:Iter2 (Results 1 – 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
DSparseBitVector.h546 ElementListConstIter Iter2 = RHS.Elements.begin();
548 for (; Iter1 != Elements.end() && Iter2 != RHS.Elements.end();
549 ++Iter1, ++Iter2) {
550 if (*Iter1 != *Iter2)
553 return Iter1 == Elements.end() && Iter2 == RHS.Elements.end();
563 ElementListConstIter Iter2 = RHS.Elements.begin();
569 while (Iter2 != RHS.Elements.end()) {
570 if (Iter1 == Elements.end() || Iter1->index() > Iter2->index()) {
571 Elements.insert(Iter1, *Iter2);
572 ++Iter2;
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DMismatchedIteratorChecker.cpp38 const SVal &Iter2) const;
241 const SVal &Iter2) const { in verifyMatch()
259 const auto *Pos2 = getIteratorPosition(State, Iter2); in verifyMatch()
274 "same container is expected.", Iter1, Iter2, C, N); in verifyMatch()
DContainerModeling.cpp49 void handleErase(CheckerContext &C, SVal Cont, SVal Iter1, SVal Iter2) const;
52 SVal Iter2) const;
639 SVal Iter2) const { in handleErase()
647 const auto *Pos2 = getIteratorPosition(State, Iter2); in handleErase()
696 SVal Iter1, SVal Iter2) const { in handleEraseAfter()
699 const auto *Pos2 = getIteratorPosition(State, Iter2); in handleEraseAfter()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
DCoroFrame.cpp649 sort(FrameData.Allocas, [&](const auto &Iter1, const auto &Iter2) { in addFieldForAllocas() argument
650 return GetAllocaSize(Iter1) > GetAllocaSize(Iter2); in addFieldForAllocas()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGDebugInfo.cpp4378 auto Iter2 = llvm::find_if(ParamDbgMappings, [&](auto &DbgPair) { in EmitDeclare() local
4381 if (Iter2 != ParamDbgMappings.end()) in EmitDeclare()
4382 return const_cast<llvm::DILocalVariable *>(Iter2->second); in EmitDeclare()