Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DWriter.cpp1585 auto nonScriptI = std::find_if(i, e, [](SectionCommand *cmd) { in sortOrphanSections() local
1592 std::stable_sort(nonScriptI, e, compareSections); in sortOrphanSections()
1605 while (nonScriptI != e) { in sortOrphanSections()
1606 auto pos = findOrphanPos(i, nonScriptI); in sortOrphanSections()
1607 OutputSection *orphan = &cast<OutputDesc>(*nonScriptI)->osec; in sortOrphanSections()
1612 auto end = std::find_if(nonScriptI + 1, e, [=](SectionCommand *cmd) { in sortOrphanSections()
1615 std::rotate(pos, nonScriptI, end); in sortOrphanSections()
1616 nonScriptI = end; in sortOrphanSections()