Lines Matching refs:__h
233 _LIBCPP_INLINE_VISIBILITY __hash_map_hasher(const _Hash& __h) : _Hash(__h) {}
249 _LIBCPP_INLINE_VISIBILITY __hash_map_hasher(const _Hash& __h) : __hash_(__h) {}
669 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
670 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.first), __k);
671 __h.get_deleter().__first_constructed = true;
672 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.second));
673 __h.get_deleter().__second_constructed = true;
674 return __h;
695 __node_holder __h = __construct_node(__k);
696 std::pair<iterator, bool> __r = __table_.__node_insert_unique(__h.get());
697 __h.release();