Lines Matching refs:__count
1582 _Size __count, const _Tp& __value_, _BinaryPredicate __pred, forward_iterator_tag)
1584 if (__count <= 0)
1602 …if (++__c == __count) // If pattern exhausted, __first is the answer (works for 1 element pattern)
1619 _Size __count, const _Tp& __value_, _BinaryPredicate __pred, random_access_iterator_tag)
1621 if (__count <= 0)
1624 if (__len < __count)
1626 …const _RandomAccessIterator __s = __last - (__count - 1); // Start of pattern match can't go beyo…
1643 …if (++__c == __count) // If pattern exhausted, __first is the answer (works for 1 element pattern)
1660 _Size __count, const _Tp& __value_, _BinaryPredicate __pred)
1663 …(__first, __last, __count, __value_, __pred, typename iterator_traits<_ForwardIterator>::iterator_…
1669 search_n(_ForwardIterator __first, _ForwardIterator __last, _Size __count, const _Tp& __value_)
1672 return _VSTD::search_n(__first, __last, __count, __value_, __equal_to<__v, _Tp>());
3763 unsigned __count = 0;
3777 if (++__count == __limit)