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) {}
668 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
669 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.first), __k);
670 __h.get_deleter().__first_constructed = true;
671 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.second));
672 __h.get_deleter().__second_constructed = true;
673 return _LIBCPP_EXPLICIT_MOVE(__h); // explicitly moved for C++03
694 __node_holder __h = __construct_node(__k);
695 pair<iterator, bool> __r = __table_.__node_insert_unique(__h.get());
696 __h.release();