Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lld/COFF/
H A DMapFile.cpp70 using SortEntry = std::pair<Defined *, size_t>; in sortUniqueSymbols() typedef
71 std::vector<SortEntry> v; in sortUniqueSymbols()
74 v[i] = SortEntry(syms[i], i); in sortUniqueSymbols()
77 parallelSort(v, std::less<SortEntry>()); in sortUniqueSymbols()
79 [](const SortEntry &a, const SortEntry &b) { in sortUniqueSymbols()
85 parallelSort(v, [imageBase](const SortEntry &a, const SortEntry &b) { in sortUniqueSymbols()