Home | History | Annotate | Download | only in backward

Lines Matching refs:__next

893 	  _Node* __next = __cur->_M_next;
894 while (__next)
896 if (_M_equals(_M_get_key(__next->_M_val), __key))
898 if (&_M_get_key(__next->_M_val) != &__key)
900 __cur->_M_next = __next->_M_next;
901 _M_delete_node(__next);
902 __next = __cur->_M_next;
909 __cur = __next;
910 __next = __cur->_M_next;
915 __cur = __next;
916 __next = __cur->_M_next;
922 __next = __saved_slot->_M_next;
923 __saved_slot->_M_next = __next->_M_next;
924 _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);