Searched refs:__nth (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/pstl/include/pstl/internal/ |
D | algorithm_impl.h | 2352 …pattern_nth_element(_ExecutionPolicy&&, _RandomAccessIterator __first, _RandomAccessIterator __nth, in __pattern_nth_element() argument 2356 std::nth_element(__first, __nth, __last, __comp); in __pattern_nth_element() 2361 …_nth_element(_ExecutionPolicy&& __exec, _RandomAccessIterator __first, _RandomAccessIterator __nth, in __pattern_nth_element() argument 2365 if (__first == __last || __nth == __last) in __pattern_nth_element() 2385 if (__x - __nth > 0) in __pattern_nth_element() 2390 else if (__x - __nth < 0) in __pattern_nth_element() 2393 if (!__comp(*__nth, *__x) && !__comp(*__x, *__nth)) in __pattern_nth_element() 2399 iter_swap(__nth, __x); in __pattern_nth_element() 2403 } while (__x != __nth); in __pattern_nth_element()
|
D | glue_algorithm_impl.h | 1121 nth_element(_ExecutionPolicy&& __exec, _RandomAccessIterator __first, _RandomAccessIterator __nth, in nth_element() argument 1125 std::forward<_ExecutionPolicy>(__exec), __first, __nth, __last, __comp, in nth_element() 1132 nth_element(_ExecutionPolicy&& __exec, _RandomAccessIterator __first, _RandomAccessIterator __nth, in nth_element() argument 1136 …std::nth_element(std::forward<_ExecutionPolicy>(__exec), __first, __nth, __last, std::less<_InputT… in nth_element()
|
D | glue_algorithm_defs.h | 404 nth_element(_ExecutionPolicy&& __exec, _RandomAccessIterator __first, _RandomAccessIterator __nth, 409 nth_element(_ExecutionPolicy&& __exec, _RandomAccessIterator __first, _RandomAccessIterator __nth,
|
/external/libcxx/include/ |
D | algorithm | 5086 __nth_element(_RandomAccessIterator __first, _RandomAccessIterator __nth, _RandomAccessIterator __l… 5094 if (__nth == __last) 5175 if (__nth < __i) 5178 // __nth_element<_Compare>(__i, __nth, __last, __comp); 5222 if (__nth == __i) 5227 if (__nth < __i) 5257 // __nth_element on range containing __nth 5258 if (__nth < __i) 5260 // __nth_element<_Compare>(__first, __nth, __i, __comp); 5265 // __nth_element<_Compare>(__i+1, __nth, __last, __comp); [all …]
|
/external/llvm-project/libcxx/include/ |
D | algorithm | 5160 __nth_element(_RandomAccessIterator __first, _RandomAccessIterator __nth, _RandomAccessIterator __l… 5168 if (__nth == __last) 5249 if (__nth < __i) 5252 // _VSTD::__nth_element<_Compare>(__i, __nth, __last, __comp); 5296 if (__nth == __i) 5301 if (__nth < __i) 5331 // __nth_element on range containing __nth 5332 if (__nth < __i) 5334 // _VSTD::__nth_element<_Compare>(__first, __nth, __i, __comp); 5339 // _VSTD::__nth_element<_Compare>(__i+1, __nth, __last, __comp); [all …]
|