Searched refs:__buff (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | stable_sort.h | 141 typename iterator_traits<_RandomAccessIterator>::value_type* __buff, 197 typename iterator_traits<_RandomAccessIterator>::value_type* __buff, in __stable_sort() argument 218 unique_ptr<value_type, __destruct_n&> __h2(__buff, __d); in __stable_sort() 219 std::__stable_sort_move<_AlgPolicy, _Compare>(__first, __m, __comp, __l2, __buff); in __stable_sort() 221 std::__stable_sort_move<_AlgPolicy, _Compare>(__m, __last, __comp, __len - __l2, __buff + __l2); in __stable_sort() 224 __buff, __buff + __l2, __buff + __l2, __buff + __len, __first, __comp); in __stable_sort() 232 std::__stable_sort<_AlgPolicy, _Compare>(__first, __m, __comp, __l2, __buff, __buff_size); in __stable_sort() 233 std::__stable_sort<_AlgPolicy, _Compare>(__m, __last, __comp, __len - __l2, __buff, __buff_size); in __stable_sort() 234 …std::__inplace_merge<_AlgPolicy>(__first, __m, __last, __comp, __l2, __len - __l2, __buff, __buff_… in __stable_sort()
|
H A D | inplace_merge.h | 102 typename iterator_traits<_BidirectionalIterator>::value_type* __buff) { in __buffered_inplace_merge() argument 105 unique_ptr<value_type, __destruct_n&> __h2(__buff, __d); in __buffered_inplace_merge() 107 value_type* __p = __buff; in __buffered_inplace_merge() 111 std::__half_inplace_merge<_AlgPolicy>(__buff, __p, __middle, __last, __first, __comp); in __buffered_inplace_merge() 113 value_type* __p = __buff; in __buffered_inplace_merge() 121 _Rv(__p), _Rv(__buff), _RBi(__middle), _RBi(__first), _RBi(__last), _Inverted(__comp)); in __buffered_inplace_merge() 133 typename iterator_traits<_BidirectionalIterator>::value_type* __buff, in __inplace_merge() argument 143 …d::__buffered_inplace_merge<_AlgPolicy>(__first, __middle, __last, __comp, __len1, __len2, __buff); in __inplace_merge() 191 …std::__inplace_merge<_AlgPolicy>(__first, __m1, __middle, __comp, __len11, __len21, __buff, __buff… in __inplace_merge() 197 …std::__inplace_merge<_AlgPolicy>(__middle, __m2, __last, __comp, __len12, __len22, __buff, __buff_… in __inplace_merge()
|