Home | History | Annotate | Download | only in backward

Lines Matching refs:__next

874 	  _Node* __next = __cur->_M_next;
875 while (__next)
877 if (_M_equals(_M_get_key(__next->_M_val), __key))
879 if (&_M_get_key(__next->_M_val) != &__key)
881 __cur->_M_next = __next->_M_next;
882 _M_delete_node(__next);
883 __next = __cur->_M_next;
890 __cur = __next;
891 __next = __cur->_M_next;
896 __cur = __next;
897 __next = __cur->_M_next;
909 __next = __saved_slot->_M_next;
910 __saved_slot->_M_next = __next->_M_next;
911 _M_delete_node(__next);
937 _Node* __next = __cur->_M_next;
938 while (__next)
940 if (__next == __p)
942 __cur->_M_next = __next->_M_next;
943 _M_delete_node(__next);
949 __cur = __next;
950 __next = __cur->_M_next;
1036 _Node* __next = __tmp[__bucket]->_M_next;
1038 __tmp[__bucket] = __next;
1057 _Node* __next;
1058 for (__next = __cur->_M_next;
1059 __next != __first;
1060 __cur = __next, __next = __cur->_M_next)
1062 while (__next != __last)
1064 __cur->_M_next = __next->_M_next;
1065 _M_delete_node(__next);
1066 __next = __cur->_M_next;
1080 _Node* __next = __cur->_M_next;
1082 __cur = __next;
1101 _Node* __next = __cur->_M_next;
1103 __cur = __next;
1127 for (_Node* __next = __cur->_M_next;
1128 __next;
1129 __cur = __next, __next = __cur->_M_next)
1131 __local_copy->_M_next = _M_new_node(__next->_M_val);