Home | History | Annotate | Download | only in bits

Lines Matching refs:__next

1296       _ForwardIterator __next = __first;
1298 while (++__next != __last)
1299 if (!(*__first == *__next))
1301 __first = __next;
1367 _ForwardIterator __next = __first;
1369 while (++__next != __last)
1370 if (!bool(__binary_pred(*__first, *__next)))
1372 __first = __next;
1768 _ForwardIterator __next = __first;
1770 while (++__next != __last)
1771 if (__pred(*__next))
1773 std::iter_swap(__first, __next);
2103 _RandomAccessIterator __next = __last;
2104 --__next;
2105 while (__val < *__next)
2107 *__last = *__next;
2108 __last = __next;
2109 --__next;
2120 _RandomAccessIterator __next = __last;
2121 --__next;
2122 while (__comp(__val, *__next))
2124 *__last = *__next;
2125 __last = __next;
2126 --__next;
3952 _ForwardIterator __next = __first;
3953 for (++__next; __next != __last; __first = __next, ++__next)
3954 if (*__next < *__first)
3955 return __next;
3956 return __next;
3983 __next = __first;
3984 for (++__next; __next != __last; __first = __next, ++__next)
3985 if (__CheckedCompare(__comp)(*__next, *__first))
3986 return __next;
3987 return __next;
4046 _ForwardIterator __next = __first;
4048 || ++__next == __last)
4052 if (*__next < *__first)
4054 __min = __next;
4060 __max = __next;
4063 __first = __next;
4068 __next = __first;
4069 if (++__next == __last)
4078 if (*__next < *__first)
4080 if (*__next < *__min)
4081 __min = __next;
4089 if (!(*__next < *__max))
4090 __max = __next;
4093 __first = __next;
4124 _ForwardIterator __next = __first;
4126 || ++__next == __last)
4130 if (__CheckedCompare(__comp)(*__next, *__first))
4132 __min = __next;
4138 __max = __next;
4141 __first = __next;
4146 __next = __first;
4147 if (++__next == __last)
4156 if (__CheckedCompare(__comp)(*__next, *__first))
4158 if (__CheckedCompare(__comp)(*__next, *__min))
4159 __min = __next;
4167 if (!__CheckedCompare(__comp)(*__next, *__max))
4168 __max = __next;
4171 __first = __next;
4390 _ForwardIterator __next = __first;
4391 while(++__next != __last)
4393 if (*__first == *__next)
4395 __first = __next;
4424 _ForwardIterator __next = __first;
4425 while(++__next != __last)
4427 if (__binary_pred(*__first, *__next))
4429 __first = __next;