Home | History | Annotate | Download | only in backward

Lines Matching refs:__next

892 	  _Node* __next = __cur->_M_next;
893 while (__next)
895 if (_M_equals(_M_get_key(__next->_M_val), __key))
897 if (&_M_get_key(__next->_M_val) != &__key)
899 __cur->_M_next = __next->_M_next;
900 _M_delete_node(__next);
901 __next = __cur->_M_next;
908 __cur = __next;
909 __next = __cur->_M_next;
914 __cur = __next;
915 __next = __cur->_M_next;
921 __next = __saved_slot->_M_next;
922 __saved_slot->_M_next = __next->_M_next;
923 _M_delete_node(__next);
956 _Node* __next = __cur->_M_next;
957 while (__next)
959 if (__next == __p)
961 __cur->_M_next = __next->_M_next;
962 _M_delete_node(__next);
968 __cur = __next;
969 __next = __cur->_M_next;
1055 _Node* __next = __tmp[__bucket]->_M_next;
1057 __tmp[__bucket] = __next;
1076 _Node* __next;
1077 for (__next = __cur->_M_next;
1078 __next != __first;
1079 __cur = __next, __next = __cur->_M_next)
1081 while (__next != __last)
1083 __cur->_M_next = __next->_M_next;
1084 _M_delete_node(__next);
1085 __next = __cur->_M_next;
1099 _Node* __next = __cur->_M_next;
1101 __cur = __next;
1120 _Node* __next = __cur->_M_next;
1122 __cur = __next;
1146 for (_Node* __next = __cur->_M_next;
1147 __next;
1148 __cur = __next, __next = __cur->_M_next)
1150 __local_copy->_M_next = _M_new_node(__next->_M_val);