Searched refs:stable_sort (Results 1 - 25 of 106) sorted by relevance

12345

/freebsd-11-stable/contrib/libstdc++/include/backward/
H A Dalgo.h99 using std::stable_sort;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMaximumSpanningTree.h70 llvm::stable_sort(EdgeVector, EdgeWeightCompare());
H A DCFGMST.h198 llvm::stable_sort(AllEdges, [](const std::unique_ptr<Edge> &Edge1,
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DCallGraphSort.cpp188 llvm::stable_sort(sorted, [&](int a, int b) {
221 llvm::stable_sort(sorted, [&](int a, int b) {
H A DOutputSections.cpp222 llvm::stable_sort(v, less_first());
453 llvm::stable_sort(isd->sections, compCtors);
H A DMapFile.cpp75 llvm::stable_sort(it.second, [](Defined *a, Defined *b) {
H A DLinkerScript.cpp376 return llvm::stable_sort(vec, alignmentComparator);
378 return llvm::stable_sort(vec, nameComparator);
380 return llvm::stable_sort(vec, priorityComparator);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp192 llvm::stable_sort(ExpansionSubViews);
193 llvm::stable_sort(InstantiationSubViews);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.cpp530 std::stable_sort(begin(), end(), HexagonInstr::lessCore);
561 std::stable_sort(begin(), end(), HexagonInstr::lessCore);
585 std::stable_sort(begin(), end(), HexagonInstr::lessCore);
594 std::stable_sort(begin(), end(), HexagonInstr::lessCVI);
650 std::stable_sort(ISJ, Packet.end());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSafeStackLayout.cpp144 std::stable_sort(StackObjects.begin() + 1, StackObjects.end(),
H A DStackSlotColoring.cpp246 llvm::stable_sort(SSIntervals, IntervalSorter());
351 llvm::stable_sort(SSIntervals, IntervalSorter());
H A DGlobalMerge.cpp223 llvm::stable_sort(
389 llvm::stable_sort(UsedGlobalSets,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DASanStackFrameLayout.cpp65 llvm::stable_sort(Vars, CompareVars);
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelEmitter.cpp116 // std::stable_sort with this predicate.
160 std::stable_sort(Patterns.begin(), Patterns.end(),
H A DSearchableTableEmitter.cpp326 std::stable_sort(Entries.begin(), Entries.end(),
585 std::stable_sort(Enum.Entries.begin(), Enum.Entries.end(),
695 std::stable_sort(Table->Entries.begin(), Table->Entries.end(),
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DSortJavaScriptImports.cpp144 llvm::stable_sort(Indices, [&](unsigned LHSI, unsigned RHSI) {
248 llvm::stable_sort(
H A DUsingDeclarationsSorter.cpp130 llvm::stable_sort(SortedUsingDeclarations);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/
H A DCommentToXML.cpp191 llvm::stable_sort(Params, ParamCommandCommentCompareIndex());
192 llvm::stable_sort(TParams, TParamCommandCommentComparePosition());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DStatistic.cpp136 llvm::stable_sort(
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingWriter.cpp137 llvm::stable_sort(MappingRegions, [](const CounterMappingRegion &LHS,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRangeMap.h153 std::stable_sort(m_entries.begin(), m_entries.end());
383 std::stable_sort(m_entries.begin(), m_entries.end());
620 std::stable_sort(m_entries.begin(), m_entries.end(),
853 std::stable_sort(m_entries.begin(), m_entries.end());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp216 std::stable_sort(m_bases.begin(), m_bases.end(),
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DICF.cpp284 llvm::stable_sort(chunks, [](const SectionChunk *a, const SectionChunk *b) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopSink.cpp291 llvm::stable_sort(ColdLoopBBs, [&](BasicBlock *A, BasicBlock *B) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLExtras.h1306 void stable_sort(R &&Range) { function in namespace:llvm
1307 std::stable_sort(adl_begin(Range), adl_end(Range));
1311 void stable_sort(R &&Range, Compare C) { function in namespace:llvm
1312 std::stable_sort(adl_begin(Range), adl_end(Range), C);

Completed in 232 milliseconds

12345