Lines Matching refs:__h
228 _LIBCPP_HIDE_FROM_ABI __hash_map_hasher(const _Hash& __h) : _Hash(__h) {}
242 _LIBCPP_HIDE_FROM_ABI __hash_map_hasher(const _Hash& __h) : __hash_(__h) {}
613 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
614 __node_traits::construct(__na, std::addressof(__h->__get_value().first), __k);
615 __h.get_deleter().__first_constructed = true;
616 __node_traits::construct(__na, std::addressof(__h->__get_value().second));
617 __h.get_deleter().__second_constructed = true;
618 return __h;
633 __node_holder __h = __construct_node(__k);
634 std::pair<iterator, bool> __r = __table_.__node_insert_unique(__h.get());
635 __h.release();