| /freebsd-13.1/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | pop_heap.h | 46 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in pop_heap() typedef 47 _VSTD::__pop_heap<_Comp_ref>(__first, __last, __comp, __last - __first); in pop_heap()
|
| H A D | sort_heap.h | 42 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in sort_heap() typedef 43 _VSTD::__sort_heap<_Comp_ref>(__first, __last, __comp); in sort_heap()
|
| H A D | make_heap.h | 48 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in make_heap() typedef 49 _VSTD::__make_heap<_Comp_ref>(__first, __last, __comp); in make_heap()
|
| H A D | binary_search.h | 42 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in binary_search() typedef 43 return _VSTD::__binary_search<_Comp_ref>(__first, __last, __value_, __comp); in binary_search()
|
| H A D | prev_permutation.h | 60 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in prev_permutation() typedef 61 return _VSTD::__prev_permutation<_Comp_ref>(__first, __last, __comp); in prev_permutation()
|
| H A D | next_permutation.h | 60 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in next_permutation() typedef 61 return _VSTD::__next_permutation<_Comp_ref>(__first, __last, __comp); in next_permutation()
|
| H A D | lexicographical_compare.h | 48 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in lexicographical_compare() typedef 49 … return _VSTD::__lexicographical_compare<_Comp_ref>(__first1, __last1, __first2, __last2, __comp); in lexicographical_compare()
|
| H A D | includes.h | 48 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in includes() typedef 49 return _VSTD::__includes<_Comp_ref>(__first1, __last1, __first2, __last2, __comp); in includes()
|
| H A D | push_heap.h | 59 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in push_heap() typedef 60 _VSTD::__sift_up<_Comp_ref>(__first, __last, __comp, __last - __first); in push_heap()
|
| H A D | partial_sort.h | 54 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in partial_sort() typedef 55 _VSTD::__partial_sort<_Comp_ref>(__first, __middle, __last, __comp); in partial_sort()
|
| H A D | lower_bound.h | 54 typedef typename add_lvalue_reference<_Compare>::type _Comp_ref; in lower_bound() typedef 55 return _VSTD::__lower_bound<_Comp_ref>(__first, __last, __value_, __comp); in lower_bound()
|
| H A D | upper_bound.h | 54 typedef typename add_lvalue_reference<_Compare>::type _Comp_ref; in upper_bound() typedef 55 return _VSTD::__upper_bound<_Comp_ref>(__first, __last, __value_, __comp); in upper_bound()
|
| H A D | set_intersection.h | 55 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in set_intersection() typedef 56 …return _VSTD::__set_intersection<_Comp_ref>(__first1, __last1, __first2, __last2, __result, __comp… in set_intersection()
|
| H A D | set_difference.h | 58 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in set_difference() typedef 59 … return _VSTD::__set_difference<_Comp_ref>(__first1, __last1, __first2, __last2, __result, __comp); in set_difference()
|
| H A D | merge.h | 57 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in merge() typedef 58 return _VSTD::__merge<_Comp_ref>(__first1, __last1, __first2, __last2, __result, __comp); in merge()
|
| H A D | partial_sort_copy.h | 59 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in partial_sort_copy() typedef 60 …return _VSTD::__partial_sort_copy<_Comp_ref>(__first, __last, __result_first, __result_last, __com… in partial_sort_copy()
|
| H A D | set_symmetric_difference.h | 63 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in set_symmetric_difference() typedef 64 …return _VSTD::__set_symmetric_difference<_Comp_ref>(__first1, __last1, __first2, __last2, __result… in set_symmetric_difference()
|
| H A D | set_union.h | 58 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in set_union() typedef 59 return _VSTD::__set_union<_Comp_ref>(__first1, __last1, __first2, __last2, __result, __comp); in set_union()
|
| H A D | equal_range.h | 69 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in equal_range() typedef 70 return _VSTD::__equal_range<_Comp_ref>(__first, __last, __value_, __comp); in equal_range()
|
| H A D | sort.h | 510 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in _LIBCPP_EXTERN_TEMPLATE() typedef 512 _VSTD::__partial_sort<_Comp_ref>(__first, __last, __last, _Comp_ref(__comp)); in _LIBCPP_EXTERN_TEMPLATE() 514 …_VSTD::__sort<_Comp_ref>(_VSTD::__unwrap_iter(__first), _VSTD::__unwrap_iter(__last), _Comp_ref(__… in _LIBCPP_EXTERN_TEMPLATE()
|
| H A D | nth_element.h | 228 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in nth_element() typedef 229 _VSTD::__nth_element<_Comp_ref>(__first, __nth, __last, __comp); in nth_element()
|
| H A D | inplace_merge.h | 213 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in inplace_merge() typedef 214 return _VSTD::__inplace_merge<_Comp_ref>(__first, __middle, __last, __comp, __len1, __len2, in inplace_merge()
|
| H A D | stable_sort.h | 219 typedef typename __comp_ref_type<_Compare>::type _Comp_ref; in stable_sort() typedef 220 _VSTD::__stable_sort<_Comp_ref>(__first, __last, __comp, __len, __buf.first, __buf.second); in stable_sort()
|