Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/ELF/
H A DWriter.cpp1364 auto nonScriptI = std::find_if(i, e, [](SectionCommand *cmd) { in sortOrphanSections() local
1371 std::stable_sort(nonScriptI, e, [&ctx = ctx](auto *l, auto *r) { in sortOrphanSections()
1386 while (nonScriptI != e) { in sortOrphanSections()
1387 auto pos = findOrphanPos(ctx, i, nonScriptI); in sortOrphanSections()
1388 OutputSection *orphan = &cast<OutputDesc>(*nonScriptI)->osec; in sortOrphanSections()
1393 auto end = std::find_if(nonScriptI + 1, e, [=](SectionCommand *cmd) { in sortOrphanSections()
1396 std::rotate(pos, nonScriptI, end); in sortOrphanSections()
1397 nonScriptI = end; in sortOrphanSections()