Home | History | Annotate | Download | only in backward

Lines Matching refs:__next

894 	  _Node* __next = __cur->_M_next;
895 while (__next)
897 if (_M_equals(_M_get_key(__next->_M_val), __key))
899 if (&_M_get_key(__next->_M_val) != &__key)
901 __cur->_M_next = __next->_M_next;
902 _M_delete_node(__next);
903 __next = __cur->_M_next;
910 __cur = __next;
911 __next = __cur->_M_next;
916 __cur = __next;
917 __next = __cur->_M_next;
929 __next = __saved_slot->_M_next;
930 __saved_slot->_M_next = __next->_M_next;
931 _M_delete_node(__next);
957 _Node* __next = __cur->_M_next;
958 while (__next)
960 if (__next == __p)
962 __cur->_M_next = __next->_M_next;
963 _M_delete_node(__next);
969 __cur = __next;
970 __next = __cur->_M_next;
1056 _Node* __next = __tmp[__bucket]->_M_next;
1058 __tmp[__bucket] = __next;
1077 _Node* __next;
1078 for (__next = __cur->_M_next;
1079 __next != __first;
1080 __cur = __next, __next = __cur->_M_next)
1082 while (__next != __last)
1084 __cur->_M_next = __next->_M_next;
1085 _M_delete_node(__next);
1086 __next = __cur->_M_next;
1100 _Node* __next = __cur->_M_next;
1102 __cur = __next;
1121 _Node* __next = __cur->_M_next;
1123 __cur = __next;
1147 for (_Node* __next = __cur->_M_next;
1148 __next;
1149 __cur = __next, __next = __cur->_M_next)
1151 __local_copy->_M_next = _M_new_node(__next->_M_val);