Home | History | Annotate | Download | only in bits

Lines Matching refs:__next

1281       _ForwardIterator __next = __first;
1283 while (++__next != __last)
1284 if (!(*__first == *__next))
1286 __first = __next;
1352 _ForwardIterator __next = __first;
1354 while (++__next != __last)
1355 if (!bool(__binary_pred(*__first, *__next)))
1357 __first = __next;
1764 _ForwardIterator __next = __first;
1766 while (++__next != __last)
1767 if (__pred(*__next))
1769 std::iter_swap(__first, __next);
2101 _RandomAccessIterator __next = __last;
2102 --__next;
2103 while (__val < *__next)
2105 *__last = _GLIBCXX_MOVE(*__next);
2106 __last = __next;
2107 --__next;
2120 _RandomAccessIterator __next = __last;
2121 --__next;
2122 while (__comp(__val, *__next))
2124 *__last = _GLIBCXX_MOVE(*__next);
2125 __last = __next;
2126 --__next;
3991 __next = __first;
3992 for (++__next; __next != __last; __first = __next, ++__next)
3993 if (*__next < *__first)
3994 return __next;
3995 return __next;
4022 _ForwardIterator __next = __first;
4023 for (++__next; __next != __last; __first = __next, ++__next)
4024 if (__CheckedCompare(__comp)(*__next, *__first))
4025 return __next;
4026 return __next;
4085 _ForwardIterator __next = __first;
4087 || ++__next == __last)
4091 if (*__next < *__first)
4093 __min = __next;
4099 __max = __next;
4102 __first = __next;
4107 __next = __first;
4108 if (++__next == __last)
4117 if (*__next < *__first)
4119 if (*__next < *__min)
4120 __min = __next;
4128 if (!(*__next < *__max))
4129 __max = __next;
4132 __first = __next;
4163 _ForwardIterator __next = __first;
4165 || ++__next == __last)
4169 if (__CheckedCompare(__comp)(*__next, *__first))
4171 __min = __next;
4177 __max = __next;
4180 __first = __next;
4185 __next = __first;
4186 if (++__next == __last)
4195 if (__CheckedCompare(__comp)(*__next, *__first))
4197 if (__CheckedCompare(__comp)(*__next, *__min))
4198 __min = __next;
4206 if (!__CheckedCompare(__comp)(*__next, *__max))
4207 __max = __next;
4210 __first = __next;
4563 _ForwardIterator __next = __first;
4564 while(++__next != __last)
4566 if (*__first == *__next)
4568 __first = __next;
4597 _ForwardIterator __next = __first;
4598 while(++__next != __last)
4600 if (__binary_pred(*__first, *__next))
4602 __first = __next;