Home | History | Annotate | Download | only in tr1

Lines Matching refs:__k

513       operator[](const _Key& __k);
520 operator[](const _Key& __k)
523 typename _Hashtable::_Hash_code_type __code = __h->_M_hash_code(__k);
524 std::size_t __n = __h->_M_bucket_index(__k, __code,
528 __h->_M_find_node(__h->_M_buckets[__n], __k, __code);
530 return __h->_M_insert_bucket(std::make_pair(__k, mapped_type()),
596 _M_bucket_index(const _Key& __k, _Hash_code_type,
598 { return _M_ranged_hash(__k, __n); }
606 _M_compare(const _Key& __k, _Hash_code_type,
608 { return _M_eq(__k, _M_extract(__n->_M_v)); }
671 _M_hash_code(const _Key& __k) const
672 { return _M_h1(__k); }
685 _M_compare(const _Key& __k, _Hash_code_type,
687 { return _M_eq(__k, _M_extract(__n->_M_v)); }
738 _M_hash_code(const _Key& __k) const
739 { return _M_h1(__k); }
752 _M_compare(const _Key& __k, _Hash_code_type __c,
754 { return __c == __n->_M_hash_code && _M_eq(__k, _M_extract(__n->_M_v)); }