Lines Matching refs:__first2
40 …_Iter1 __first1, _Sent1 __last1, _Iter2 __first2, _Sent2 __last2, _Pred& __pred, _Proj1& __proj1, … in __search_forward_impl() argument
41 if (__first2 == __last2) in __search_forward_impl()
50 … if (std::__invoke(__pred, std::__invoke(__proj1, *__first1), std::__invoke(__proj2, *__first2))) in __search_forward_impl()
56 _Iter2 __m2 = __first2; in __search_forward_impl()
86 _Iter2 __first2, in __search_random_access_impl() argument
101 … if (std::__invoke(__pred, std::__invoke(__proj1, *__first1), std::__invoke(__proj2, *__first2))) in __search_random_access_impl()
107 _Iter2 __m2 = __first2; in __search_random_access_impl()
124 _Iter2 __first2,
131 auto __size2 = __last2 - __first2;
141 __first1, __last1, __first2, __last2, __pred, __proj1, __proj2, __size1, __size2);
148 _Iter2 __first2,
156 …return std::__search_forward_impl<_ClassicAlgPolicy>(__first1, __last1, __first2, __last2, __pred,…
163 _ForwardIterator2 __first2, in search() argument
166 static_assert(__is_callable<_BinaryPredicate, decltype(*__first1), decltype(*__first2)>::value, in search()
169 return std::__search_impl(__first1, __last1, __first2, __last2, __pred, __proj, __proj).first; in search()
174 search(_ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, _ForwardI… in search() argument
175 return std::search(__first1, __last1, __first2, __last2, __equal_to()); in search()