Lines Matching refs:__count
1594 _Size __count, const _Tp& __value_, _BinaryPredicate __pred, forward_iterator_tag)
1596 if (__count <= 0)
1614 …if (++__c == __count) // If pattern exhausted, __first is the answer (works for 1 element pattern)
1631 _Size __count, const _Tp& __value_, _BinaryPredicate __pred, random_access_iterator_tag)
1633 if (__count <= 0)
1636 if (__len < __count)
1638 …const _RandomAccessIterator __s = __last - (__count - 1); // Start of pattern match can't go beyo…
1655 …if (++__c == __count) // If pattern exhausted, __first is the answer (works for 1 element pattern)
1672 _Size __count, const _Tp& __value_, _BinaryPredicate __pred)
1675 (__first, __last, __convert_to_integral(__count), __value_, __pred,
1682 search_n(_ForwardIterator __first, _ForwardIterator __last, _Size __count, const _Tp& __value_)
1685 return _VSTD::search_n(__first, __last, __convert_to_integral(__count),
3779 unsigned __count = 0;
3793 if (++__count == __limit)