Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DWriter.cpp1610 auto nonScriptI = std::find_if(i, e, [](BaseCommand *base) { in sortSections() local
1617 std::stable_sort(nonScriptI, e, compareSections); in sortSections()
1630 while (nonScriptI != e) { in sortSections()
1631 auto pos = findOrphanPos(i, nonScriptI); in sortSections()
1632 OutputSection *orphan = cast<OutputSection>(*nonScriptI); in sortSections()
1637 auto end = std::find_if(nonScriptI + 1, e, [=](BaseCommand *cmd) { in sortSections()
1640 std::rotate(pos, nonScriptI, end); in sortSections()
1641 nonScriptI = end; in sortSections()