Lines Matching refs:__node

2000     _M_insert_bucket_begin(size_type __bkt, __node_ptr __node)  in _GLIBCXX_VISIBILITY()
2006 __node->_M_nxt = _M_buckets[__bkt]->_M_nxt; in _GLIBCXX_VISIBILITY()
2007 _M_buckets[__bkt]->_M_nxt = __node; in _GLIBCXX_VISIBILITY()
2014 __node->_M_nxt = _M_before_begin._M_nxt; in _GLIBCXX_VISIBILITY()
2015 _M_before_begin._M_nxt = __node; in _GLIBCXX_VISIBILITY()
2017 if (__node->_M_nxt) in _GLIBCXX_VISIBILITY()
2020 _M_buckets[_M_bucket_index(*__node->_M_next())] = __node; in _GLIBCXX_VISIBILITY()
2078 _Scoped_node __node { this, std::forward<_Args>(__args)... }; in _GLIBCXX_VISIBILITY()
2079 const key_type& __k = _ExtractKey{}(__node._M_node->_M_v()); in _GLIBCXX_VISIBILITY()
2096 auto __pos = _M_insert_unique_node(__bkt, __code, __node._M_node); in _GLIBCXX_VISIBILITY()
2097 __node._M_node = nullptr; in _GLIBCXX_VISIBILITY()
2114 _Scoped_node __node { this, std::forward<_Args>(__args)... }; in _GLIBCXX_VISIBILITY()
2115 const key_type& __k = _ExtractKey{}(__node._M_node->_M_v()); in _GLIBCXX_VISIBILITY()
2120 __node._M_node); in _GLIBCXX_VISIBILITY()
2121 __node._M_node = nullptr; in _GLIBCXX_VISIBILITY()
2160 __node_ptr __node, size_type __n_elt) in _GLIBCXX_VISIBILITY()
2174 this->_M_store_code(*__node, __code); in _GLIBCXX_VISIBILITY()
2177 _M_insert_bucket_begin(__bkt, __node); in _GLIBCXX_VISIBILITY()
2179 return iterator(__node); in _GLIBCXX_VISIBILITY()
2190 __hash_code __code, __node_ptr __node) in _GLIBCXX_VISIBILITY()
2200 this->_M_store_code(*__node, __code); in _GLIBCXX_VISIBILITY()
2201 const key_type& __k = _ExtractKey{}(__node->_M_v()); in _GLIBCXX_VISIBILITY()
2215 __node->_M_nxt = __prev->_M_nxt; in _GLIBCXX_VISIBILITY()
2216 __prev->_M_nxt = __node; in _GLIBCXX_VISIBILITY()
2220 if (__node->_M_nxt in _GLIBCXX_VISIBILITY()
2221 && !this->_M_equals(__k, __code, *__node->_M_next())) in _GLIBCXX_VISIBILITY()
2223 size_type __next_bkt = _M_bucket_index(*__node->_M_next()); in _GLIBCXX_VISIBILITY()
2225 _M_buckets[__next_bkt] = __node; in _GLIBCXX_VISIBILITY()
2232 _M_insert_bucket_begin(__bkt, __node); in _GLIBCXX_VISIBILITY()
2234 return iterator(__node); in _GLIBCXX_VISIBILITY()
2259 if (__node_ptr __node = _M_find_node_tr(__bkt, __k, __code)) in _GLIBCXX_VISIBILITY() local
2260 return { iterator(__node), false }; in _GLIBCXX_VISIBILITY()
2262 _Scoped_node __node { in _GLIBCXX_VISIBILITY()
2269 = _M_insert_unique_node(__bkt, __code, __node._M_node); in _GLIBCXX_VISIBILITY()
2270 __node._M_node = nullptr; in _GLIBCXX_VISIBILITY()
2289 _Scoped_node __node{ __node_gen(std::forward<_Arg>(__v)), this }; in _GLIBCXX_VISIBILITY()
2293 __hint, _ExtractKey{}(__node._M_node->_M_v())); in _GLIBCXX_VISIBILITY()
2297 __node._M_node); in _GLIBCXX_VISIBILITY()
2298 __node._M_node = nullptr; in _GLIBCXX_VISIBILITY()