Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/libcxx/src/
H A Dalgorithm.cpp15 void __sort(RandomAccessIterator first, RandomAccessIterator last, Comp comp) { in __sort() function
29 template void __sort<__less<char>&, char*>(char*, char*, __less<char>&);
31 template void __sort<__less<wchar_t>&, wchar_t*>(wchar_t*, wchar_t*, __less<wchar_t>&);
33 template void __sort<__less<signed char>&, signed char*>(signed char*, signed char*, __less<signed …
35 template void __sort<__less<short>&, short*>(short*, short*, __less<short>&);
37 template void __sort<__less<int>&, int*>(int*, int*, __less<int>&);
38 template void __sort<__less<unsigned>&, unsigned*>(unsigned*, unsigned*, __less<unsigned>&);
39 template void __sort<__less<long>&, long*>(long*, long*, __less<long>&);
41 template void __sort<__less<long long>&, long long*>(long long*, long long*, __less<long long>&);
43 template void __sort<__less<float>&, float*>(float*, float*, __less<float>&);
[all …]
/freebsd-14.2/contrib/llvm-project/libcxx/include/__algorithm/
H A Dsort.h892 void __sort(_RandomAccessIterator, _RandomAccessIterator, _Comp);
899 __sort<__less<signed char>&, signed char*>(signed char*, signed char*, __less<signed char>&);
901 __sort<__less<unsigned char>&, unsigned char*>(unsigned char*, unsigned char*, __less<unsigned char…
905 extern template _LIBCPP_EXPORTED_FROM_ABI void __sort<__less<int>&, int*>(int*, int*, __less<int>&);
907 __sort<__less<unsigned>&, unsigned*>(unsigned*, unsigned*, __less<unsigned>&);
912 __sort<__less<long long>&, long long*>(long long*, long long*, __less<long long>&);
918 __sort<__less<long double>&, long double*>(long double*, long double*, __less<long double>&);
962 std::__sort<__less<_Type>&, _Type*>(__first, __last, __comp);
968 std::__sort<__less<_Type>&, _Type*>(__first, __last, __comp);
975 std::__sort<__less<_Type>&, _Type*>(__first, __last, __comp);
[all …]
H A Dranges_sort.h42 namespace __sort {
74 inline constexpr auto sort = __sort::__fn{};
H A Dpstl_sort.h43 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI optional<__empty> __sort( in __sort() function
63 if (!std::__sort(__policy, std::move(__first), std::move(__last), std::move(__comp))) in sort()
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dforward_list888 …static _LIBCPP_HIDDEN __node_pointer __sort(__node_pointer __f, difference_type __sz, _Compare& __…
1445 …base::__before_begin()->__next_ = __sort(base::__before_begin()->__next_, std::distance(begin(), e…
1451 forward_list<_Tp, _Alloc>::__sort(__node_pointer __f1, difference_type __sz, _Compare& __comp) {
1470 return __merge(__sort(__f1, __sz1, __comp), __sort(__f2, __sz2, __comp), __comp);
H A Dlist942 _LIBCPP_HIDDEN static iterator __sort(iterator __f1, iterator __e2, size_type __n, _Comp& __comp);
1592 __sort(begin(), end(), base::__sz(), __comp);
1598 list<_Tp, _Alloc>::__sort(iterator __f1, iterator __e2, size_type __n, _Comp& __comp) {
1614 iterator __r = __f1 = __sort(__f1, __e1, __n2, __comp);
1615 iterator __f2 = __e1 = __sort(__e1, __e2, __n - __n2, __comp);