Lines Matching refs:HashTable
78 /*static*/ double HashTable::m_defMaxLoadFactor = 0.8;
79 /*static*/ double HashTable::m_defDefGrowFactor = 2.0;
81 HashTable::HashTable(ULONG lSize, BOOL bOwner, double dMaxLoadFactor, double dGrowFactor) in HashTable() function in HashTable
98 HashTable::~HashTable() in ~HashTable()
124 void* HashTable::GetObjectAt(ULONG lPos) const in GetObjectAt()
134 void HashTable::OnDeleteObject(void*) in OnDeleteObject()
139 ULONG HashTable::Hash(String const& Key) const in Hash()
175 ULONG HashTable::DHash(String const& Key, ULONG lOldHash) const in DHash()
199 ULONG HashTable::Probe(ULONG lPos) const in Probe()
206 BOOL HashTable::IsFull() const in IsFull()
211 BOOL HashTable::Insert(String const& Key, void* pObject) in Insert()
279 HashItem* HashTable::FindPos(String const& Key) const in FindPos()
340 void* HashTable::Find(String const& Key) const in Find()
356 void* HashTable::Delete(String const& Key) in Delete()
385 double HashTable::CalcLoadFactor() const in CalcLoadFactor()
391 void HashTable::SmartGrow() in SmartGrow()
434 HashTableIterator::HashTableIterator(HashTable const& aTable) in HashTableIterator()