Home | History | Annotate | Download | only in bits

Lines Matching refs:__h

540       _Hashtable* __h = static_cast<_Hashtable*>(this);
541 typename _Hashtable::_Hash_code_type __code = __h->_M_hash_code(__k);
542 std::size_t __n = __h->_M_bucket_index(__k, __code,
543 __h->_M_bucket_count);
546 __h->_M_find_node(__h->_M_buckets[__n], __k, __code);
548 return __h->_M_insert_bucket(std::make_pair(__k, mapped_type()),
559 _Hashtable* __h = static_cast<_Hashtable*>(this);
560 typename _Hashtable::_Hash_code_type __code = __h->_M_hash_code(__k);
561 std::size_t __n = __h->_M_bucket_index(__k, __code,
562 __h->_M_bucket_count);
565 __h->_M_find_node(__h->_M_buckets[__n], __k, __code);
567 return __h->_M_insert_bucket(std::make_pair(std::move(__k),
579 _Hashtable* __h = static_cast<_Hashtable*>(this);
580 typename _Hashtable::_Hash_code_type __code = __h->_M_hash_code(__k);
581 std::size_t __n = __h->_M_bucket_index(__k, __code,
582 __h->_M_bucket_count);
585 __h->_M_find_node(__h->_M_buckets[__n], __k, __code);
597 const _Hashtable* __h = static_cast<const _Hashtable*>(this);
598 typename _Hashtable::_Hash_code_type __code = __h->_M_hash_code(__k);
599 std::size_t __n = __h->_M_bucket_index(__k, __code,
600 __h->_M_bucket_count);
603 __h->_M_find_node(__h->_M_buckets[__n], __k, __code);
667 const _H1&, const _H2&, const _Hash& __h)
668 : _M_extract(__ex), _M_eq(__eq), _M_ranged_hash(__h) { }