Searched refs:__first2 (Results 1 - 5 of 5) sorted by relevance

/haiku/headers/cpp/
H A Dstl_algobase.h365 _InputIter2 __first2) {
366 while (__first1 != __last1 && *__first1 == *__first2) {
368 ++__first2;
370 return pair<_InputIter1, _InputIter2>(__first1, __first2);
376 _InputIter2 __first2,
378 while (__first1 != __last1 && __binary_pred(*__first1, *__first2)) {
380 ++__first2;
382 return pair<_InputIter1, _InputIter2>(__first1, __first2);
387 _InputIter2 __first2) {
388 for ( ; __first1 != __last1; ++__first1, ++__first2)
363 mismatch(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2) argument
374 mismatch(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _BinaryPredicate __binary_pred) argument
386 equal(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2) argument
395 equal(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _BinaryPredicate __binary_pred) argument
408 lexicographical_compare(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2) argument
421 lexicographical_compare(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _Compare __comp) argument
435 lexicographical_compare(const unsigned char* __first1, const unsigned char* __last1, const unsigned char* __first2, const unsigned char* __last2) argument
446 lexicographical_compare(const char* __first1, const char* __last1, const char* __first2, const char* __last2) argument
463 __lexicographical_compare_3way(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2) argument
483 __lexicographical_compare_3way(const unsigned char* __first1, const unsigned char* __last1, const unsigned char* __first2, const unsigned char* __last2) argument
496 __lexicographical_compare_3way(const char* __first1, const char* __last1, const char* __first2, const char* __last2) argument
514 lexicographical_compare_3way(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2) argument
[all...]
H A Dstl_algo.h282 _ForwardIter2 __first2, _ForwardIter2 __last2)
285 if (__first1 == __last1 || __first2 == __last2)
289 _ForwardIter2 __tmp(__first2);
292 return find(__first1, __last1, *__first2);
298 __p1 = __first2; ++__p1;
303 __first1 = find(__first1, __last1, *__first2);
326 _ForwardIter2 __first2, _ForwardIter2 __last2,
330 if (__first1 == __last1 || __first2 == __last2)
334 _ForwardIter2 __tmp(__first2);
337 return find(__first1, __last1, *__first2);
281 search(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2) argument
325 search(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2, _BinaryPred __predicate) argument
438 swap_ranges(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2) argument
457 transform(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _OutputIter __result, _BinaryOperation __binary_op) argument
1941 merge(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result) argument
1960 merge(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
2077 __merge_backward(_BidirectionalIter1 __first1, _BidirectionalIter1 __last1, _BidirectionalIter2 __first2, _BidirectionalIter2 __last2, _BidirectionalIter3 __result) argument
2106 __merge_backward(_BidirectionalIter1 __first1, _BidirectionalIter1 __last1, _BidirectionalIter2 __first2, _BidirectionalIter2 __last2, _BidirectionalIter3 __result, _Compare __comp) argument
2283 includes(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2) argument
2297 includes(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _Compare __comp) argument
2311 set_union(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result) argument
2335 set_union(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
2358 set_intersection(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result) argument
2377 set_intersection(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
2395 set_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result) argument
2415 set_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
2435 set_symmetric_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result) argument
2459 set_symmetric_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
2649 find_first_of(_InputIter __first1, _InputIter __last1, _ForwardIter __first2, _ForwardIter __last2) argument
2660 find_first_of(_InputIter __first1, _InputIter __last1, _ForwardIter __first2, _ForwardIter __last2, _BinaryPredicate __comp) argument
2679 __find_end(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2, forward_iterator_tag, forward_iterator_tag) argument
2703 __find_end(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2, forward_iterator_tag, forward_iterator_tag, _BinaryPredicate __comp) argument
2731 __find_end(_BidirectionalIter1 __first1, _BidirectionalIter1 __last1, _BidirectionalIter2 __first2, _BidirectionalIter2 __last2, bidirectional_iterator_tag, bidirectional_iterator_tag) argument
2755 __find_end(_BidirectionalIter1 __first1, _BidirectionalIter1 __last1, _BidirectionalIter2 __first2, _BidirectionalIter2 __last2, bidirectional_iterator_tag, bidirectional_iterator_tag, _BinaryPredicate __comp) argument
2783 find_end(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2) argument
2794 find_end(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2, _BinaryPredicate __comp) argument
[all...]
H A Dstl_list.h620 const_iterator __first2 = __x.begin(); local
622 while (__first1 != __last1 && __first2 != __last2)
623 *__first1++ = *__first2++;
624 if (__first2 == __last2)
627 insert(__last1, __first2, __last2);
647 list<_Tp, _Alloc>::_M_assign_dispatch(_InputIter __first2, _InputIter __last2, argument
652 for ( ; __first1 != __last1 && __first2 != __last2; ++__first1, ++__first2)
653 *__first1 = *__first2;
654 if (__first2
696 iterator __first2 = __x.begin(); local
788 iterator __first2 = __x.begin(); local
[all...]
H A Dstl_numeric.h56 _InputIterator2 __first2, _Tp __init)
58 for ( ; __first1 != __last1; ++__first1, ++__first2)
59 __init = __init + (*__first1 * *__first2);
66 _InputIterator2 __first2, _Tp __init,
70 for ( ; __first1 != __last1; ++__first1, ++__first2)
71 __init = __binary_op1(__init, __binary_op2(*__first1, *__first2));
55 inner_product(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _Tp __init) argument
65 inner_product(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _Tp __init, _BinaryOperation1 __binary_op1, _BinaryOperation2 __binary_op2) argument
H A Dstl_uninitialized.h231 _InputIter2 __first2, _InputIter2 __last2,
236 return uninitialized_copy(__first2, __last2, __mid);
263 _ForwardIter __first2, _ForwardIter __last2,
266 _ForwardIter __mid2 = uninitialized_copy(__first1, __last1, __first2);
270 __STL_UNWIND(destroy(__first2, __mid2));
230 __uninitialized_copy_copy(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _ForwardIter __result) argument
262 __uninitialized_copy_fill(_InputIter __first1, _InputIter __last1, _ForwardIter __first2, _ForwardIter __last2, const _Tp& __x) argument

Completed in 63 milliseconds