Lines Matching refs:__count
1484 _Size __count, const _Tp& __value_, _BinaryPredicate __pred, forward_iterator_tag)
1486 if (__count <= 0)
1504 …if (++__c == __count) // If pattern exhausted, __first is the answer (works for 1 element pattern)
1521 _Size __count, const _Tp& __value_, _BinaryPredicate __pred, random_access_iterator_tag)
1523 if (__count <= 0)
1526 if (__len < __count)
1528 …const _RandomAccessIterator __s = __last - (__count - 1); // Start of pattern match can't go beyo…
1545 …if (++__c == __count) // If pattern exhausted, __first is the answer (works for 1 element pattern)
1562 _Size __count, const _Tp& __value_, _BinaryPredicate __pred)
1565 (__first, __last, __convert_to_integral(__count), __value_, __pred,
1572 search_n(_ForwardIterator __first, _ForwardIterator __last, _Size __count, const _Tp& __value_)
1575 return _VSTD::search_n(__first, __last, __convert_to_integral(__count),
3756 unsigned __count = 0;
3770 if (++__count == __limit)