Searched refs:sorted_rings (Results 1 – 1 of 1) sorted by relevance
816 ring_vector<T> sorted_rings; in sort_rings_largest_to_smallest() local817 sorted_rings.reserve(manager.rings.size()); in sort_rings_largest_to_smallest()819 sorted_rings.push_back(&r); in sort_rings_largest_to_smallest()821 std::stable_sort(sorted_rings.begin(), sorted_rings.end(), in sort_rings_largest_to_smallest()828 return sorted_rings; in sort_rings_largest_to_smallest()833 ring_vector<T> sorted_rings; in sort_rings_smallest_to_largest() local834 sorted_rings.reserve(manager.rings.size()); in sort_rings_smallest_to_largest()836 sorted_rings.push_back(&r); in sort_rings_smallest_to_largest()838 std::stable_sort(sorted_rings.begin(), sorted_rings.end(), in sort_rings_smallest_to_largest()845 return sorted_rings; in sort_rings_smallest_to_largest()[all …]