Lines Matching refs:__new_node
1096 _M_insert_bucket_begin(size_type __bkt, _Node* __new_node) in _GLIBCXX_VISIBILITY()
1102 __new_node->_M_nxt = _M_buckets[__bkt]->_M_nxt; in _GLIBCXX_VISIBILITY()
1103 _M_buckets[__bkt]->_M_nxt = __new_node; in _GLIBCXX_VISIBILITY()
1110 __new_node->_M_nxt = _M_before_begin._M_nxt; in _GLIBCXX_VISIBILITY()
1111 _M_before_begin._M_nxt = __new_node; in _GLIBCXX_VISIBILITY()
1112 if (__new_node->_M_nxt) in _GLIBCXX_VISIBILITY()
1115 _M_buckets[_M_bucket_index(__new_node->_M_next())] = __new_node; in _GLIBCXX_VISIBILITY()
1173 _Node* __new_node = _M_allocate_node(std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY() local
1176 const key_type& __k = this->_M_extract()(__new_node->_M_v); in _GLIBCXX_VISIBILITY()
1184 _M_deallocate_node(__new_node); in _GLIBCXX_VISIBILITY()
1189 this->_M_store_code(__new_node, __code); in _GLIBCXX_VISIBILITY()
1202 _M_insert_bucket_begin(__bkt, __new_node); in _GLIBCXX_VISIBILITY()
1204 return std::make_pair(iterator(__new_node), true); in _GLIBCXX_VISIBILITY()
1208 _M_deallocate_node(__new_node); in _GLIBCXX_VISIBILITY()
1231 _Node* __new_node = _M_allocate_node(std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY() local
1234 const key_type& __k = this->_M_extract()(__new_node->_M_v); in _GLIBCXX_VISIBILITY()
1237 this->_M_store_code(__new_node, __code); in _GLIBCXX_VISIBILITY()
1250 __new_node->_M_nxt = __prev->_M_nxt; in _GLIBCXX_VISIBILITY()
1251 __prev->_M_nxt = __new_node; in _GLIBCXX_VISIBILITY()
1257 _M_insert_bucket_begin(__bkt, __new_node); in _GLIBCXX_VISIBILITY()
1259 return iterator(__new_node); in _GLIBCXX_VISIBILITY()
1263 _M_deallocate_node(__new_node); in _GLIBCXX_VISIBILITY()
1293 _Node* __new_node = nullptr; in _GLIBCXX_VISIBILITY() local
1298 __new_node = _M_allocate_node(std::forward<_Arg>(__v)); in _GLIBCXX_VISIBILITY()
1299 this->_M_store_code(__new_node, __code); in _GLIBCXX_VISIBILITY()
1303 _M_insert_bucket_begin(__n, __new_node); in _GLIBCXX_VISIBILITY()
1305 return iterator(__new_node); in _GLIBCXX_VISIBILITY()
1309 if (!__new_node) in _GLIBCXX_VISIBILITY()
1312 _M_deallocate_node(__new_node); in _GLIBCXX_VISIBILITY()
1363 _Node* __new_node = nullptr; in _GLIBCXX_VISIBILITY() local
1367 __new_node = _M_allocate_node(std::forward<_Arg>(__v)); in _GLIBCXX_VISIBILITY()
1368 this->_M_store_code(__new_node, __code); in _GLIBCXX_VISIBILITY()
1373 size_type __bkt = _M_bucket_index(__new_node); in _GLIBCXX_VISIBILITY()
1375 = _M_find_before_node(__bkt, this->_M_extract()(__new_node->_M_v), in _GLIBCXX_VISIBILITY()
1380 __new_node->_M_nxt = __prev->_M_nxt; in _GLIBCXX_VISIBILITY()
1381 __prev->_M_nxt = __new_node; in _GLIBCXX_VISIBILITY()
1387 _M_insert_bucket_begin(__bkt, __new_node); in _GLIBCXX_VISIBILITY()
1389 return iterator(__new_node); in _GLIBCXX_VISIBILITY()
1393 if (!__new_node) in _GLIBCXX_VISIBILITY()
1396 _M_deallocate_node(__new_node); in _GLIBCXX_VISIBILITY()