Home | History | Annotate | Download | only in tr1

Lines Matching defs:__code

696       typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
697 std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
698 _Node* __p = _M_find_node(_M_buckets[__n], __k, __code);
713 typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
714 std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
715 _Node* __p = _M_find_node(_M_buckets[__n], __k, __code);
730 typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
731 std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
734 if (this->_M_compare(__k, __code, __p))
755 typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
756 std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
758 _Node* __p = _M_find_node(*__head, __k, __code);
764 if (!this->_M_compare(__k, __code, __p1))
793 typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
794 std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
796 _Node* __p = _M_find_node(*__head, __k, __code);
802 if (!this->_M_compare(__k, __code, __p1))
827 typename _Hashtable::_Hash_code_type __code) const
830 if (this->_M_compare(__k, __code, __p))
846 typename _Hashtable::_Hash_code_type __code)
861 __n = this->_M_bucket_index(__k, __code, __do_rehash.second);
866 this->_M_store_code(__new_node, __code);
892 typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
893 size_type __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
895 if (_Node* __p = _M_find_node(_M_buckets[__n], __k, __code))
897 return std::make_pair(_M_insert_bucket(__v, __n, __code), true);
919 typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
920 size_type __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
923 _Node* __prev = _M_find_node(_M_buckets[__n], __k, __code);
936 this->_M_store_code(__new_node, __code);
1036 typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
1037 std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
1041 while (*__slot && !this->_M_compare(__k, __code, *__slot))
1045 while (*__slot && this->_M_compare(__k, __code, *__slot))