Lines Matching refs:__new_node
854 _Node* __new_node = _M_allocate_node(__v); in _GLIBCXX_VISIBILITY() local
865 __new_node->_M_next = _M_buckets[__n]; in _GLIBCXX_VISIBILITY()
866 this->_M_store_code(__new_node, __code); in _GLIBCXX_VISIBILITY()
867 _M_buckets[__n] = __new_node; in _GLIBCXX_VISIBILITY()
869 return iterator(__new_node, _M_buckets + __n); in _GLIBCXX_VISIBILITY()
873 _M_deallocate_node(__new_node); in _GLIBCXX_VISIBILITY()
924 _Node* __new_node = _M_allocate_node(__v); in _GLIBCXX_VISIBILITY() local
928 __new_node->_M_next = __prev->_M_next; in _GLIBCXX_VISIBILITY()
929 __prev->_M_next = __new_node; in _GLIBCXX_VISIBILITY()
933 __new_node->_M_next = _M_buckets[__n]; in _GLIBCXX_VISIBILITY()
934 _M_buckets[__n] = __new_node; in _GLIBCXX_VISIBILITY()
936 this->_M_store_code(__new_node, __code); in _GLIBCXX_VISIBILITY()
939 return iterator(__new_node, _M_buckets + __n); in _GLIBCXX_VISIBILITY()