Home
last modified time | relevance | path

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

/openbmc/openbmc/poky/meta/recipes-devtools/apt/apt/
H A D0001-Remove-using-std-binary_function.patch61 - stable_sort(PkgList.begin(),PkgList.end(),PackageMap::ContentsCompare());
62 + stable_sort(PkgList.begin(),PkgList.end(),ContentsCompare);
70 - stable_sort(PkgList.begin(),PkgList.end(),PackageMap::DBCompare());
71 - stable_sort(PkgList.begin(),PkgList.end(),PackageMap::SrcDBCompare());
72 + stable_sort(PkgList.begin(),PkgList.end(),DBCompare);
73 + stable_sort(PkgList.begin(),PkgList.end(),SrcDBCompare);
81 - stable_sort(PkgList.begin(),PkgList.end(),PackageMap::DBCompare());
82 - stable_sort(PkgList.begin(),PkgList.end(),PackageMap::SrcDBCompare());
83 + stable_sort(PkgList.begin(),PkgList.end(),DBCompare);
84 + stable_sort(PkgList.begin(),PkgList.end(),SrcDBCompare);
/openbmc/linux/rust/alloc/
H A Dslice.rs213 stable_sort(self, T::lt); in sort()
269 stable_sort(self, |a, b| compare(a, b) == Less); in sort_by()
312 stable_sort(self, |a, b| f(a).lt(&f(b))); in sort_by_key()
844 fn stable_sort<T, F>(v: &mut [T], mut is_less: F) in stable_sort() function