Lines Matching refs:__h
461 __unordered_map_hasher(const _Hash& __h)
463 : _Hash(__h) {}
496 __unordered_map_hasher(const _Hash& __h)
498 : __hash_(__h) {}
1197 iterator try_emplace(const_iterator __h, const key_type& __k, _Args&&... __args)
1200 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__h) == this,
1204 ((void)__h);
1211 iterator try_emplace(const_iterator __h, key_type&& __k, _Args&&... __args)
1214 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__h) == this,
1218 ((void)__h);
1760 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
1761 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__get_value().first), __k);
1762 __h.get_deleter().__first_constructed = true;
1763 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__get_value().second));
1764 __h.get_deleter().__second_constructed = true;
1765 return __h;
1775 __node_holder __h = __construct_node_with_key(__k);
1776 pair<iterator, bool> __r = __table_.__node_insert_unique(__h.get());
1777 __h.release();