Lines Matching defs:__value
36 _Iter __first, _Sent __last, _SizeT __count, const _Type& __value, _Pred& __pred, _Proj& __proj) {
40 // Find first element in sequence that matchs __value, with a mininum of loop checks
42 if (__first == __last) { // return __last if no element matches __value
46 if (std::__invoke(__pred, std::__invoke(__proj, *__first), __value))
50 // *__first matches __value, now match elements after here
62 if (!std::__invoke(__pred, std::__invoke(__proj, *__m), __value)) {
73 _Iter __first, _Sent __last, _SizeT __count, const _Type& __value, _Pred& __pred, _Proj& __proj, _DiffT __size1) {
84 // Find first element in sequence that matchs __value, with a mininum of loop checks
86 if (__first >= __s) { // return __last if no element matches __value
90 if (std::__invoke(__pred, std::__invoke(__proj, *__first), __value))
103 if (!std::__invoke(__pred, std::__invoke(__proj, *__m), __value)) {
120 __search_n_impl(_Iter __first, _Sent __last, _DiffT __count, const _Type& __value, _Pred& __pred, _Proj& __proj) {
122 __first, __last, __count, __value, __pred, __proj, __last - __first);
135 __search_n_impl(_Iter1 __first, _Sent1 __last, _DiffT __count, const _Type& __value, _Pred& __pred, _Proj& __proj) {
136 return std::__search_n_forward_impl<_ClassicAlgPolicy>(__first, __last, __count, __value, __pred, __proj);
141 _ForwardIterator __first, _ForwardIterator __last, _Size __count, const _Tp& __value, _BinaryPredicate __pred) {
145 return std::__search_n_impl(__first, __last, std::__convert_to_integral(__count), __value, __pred, __proj).first;
150 search_n(_ForwardIterator __first, _ForwardIterator __last, _Size __count, const _Tp& __value) {
151 return std::search_n(__first, __last, std::__convert_to_integral(__count), __value, __equal_to());