Searched refs:__nth (Results 1 – 3 of 3) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _algo.c | 1314 void __nth_element(_RandomAccessIter __first, _RandomAccessIter __nth, in __nth_element() argument 1324 if (__cut <= __nth) in __nth_element() 1335 void nth_element(_RandomAccessIter __first, _RandomAccessIter __nth, in nth_element() argument 1337 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__first, __nth)) in nth_element() 1338 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__nth, __last)) in nth_element() 1339 _STLP_PRIV __nth_element(__first, __nth, __last, _STLP_VALUE_TYPE(__first, _RandomAccessIter), in nth_element() 1344 void nth_element(_RandomAccessIter __first, _RandomAccessIter __nth, in nth_element() argument 1346 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__first, __nth)) in nth_element() 1347 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__nth, __last)) in nth_element() 1348 …_STLP_PRIV __nth_element(__first, __nth, __last, _STLP_VALUE_TYPE(__first, _RandomAccessIter), __c… in nth_element()
|
D | _algo.h | 454 void nth_element(_RandomAccessIter __first, _RandomAccessIter __nth, 458 void nth_element(_RandomAccessIter __first, _RandomAccessIter __nth,
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | algorithm | 5089 __nth_element(_RandomAccessIterator __first, _RandomAccessIterator __nth, _RandomAccessIterator __l… 5097 if (__nth == __last) 5178 if (__nth < __i) 5181 // __nth_element<_Compare>(__i, __nth, __last, __comp); 5225 if (__nth == __i) 5230 if (__nth < __i) 5260 // __nth_element on range containing __nth 5261 if (__nth < __i) 5263 // __nth_element<_Compare>(__first, __nth, __i, __comp); 5268 // __nth_element<_Compare>(__i+1, __nth, __last, __comp); [all …]
|