Home
last modified time | relevance | path

Searched refs:m_lSize (Results 1 – 4 of 4) sorted by relevance

/trunk/main/tools/workben/
H A Dhashtbl.cxx83 m_lSize = lSize; in HashTable()
127 DBG_ASSERT(lPos<m_lSize, "HashTable::GetObjectAt()"); in GetObjectAt()
172 return h % m_lSize; in Hash()
184 lHash %= m_lSize; in DHash()
202 lPos++; if (lPos==m_lSize) lPos=0; in Probe()
208 return m_lElem>=m_lSize; in IsFull()
327 bEnd = !(n<m_lSize || pItem->IsFree()); in FindPos()
388 return double(m_lElem) / double(m_lSize); in CalcLoadFactor()
403 m_lSize = ULONG (m_dGrowFactor * m_lSize); // neue Gr��e in SmartGrow()
404 m_pData = new HashItem[m_lSize]; // neue Daten holen in SmartGrow()
[all …]
H A Dhashtbl.hxx39 ULONG m_lSize; member in HashTable
90 ULONG GetSize() const { return m_lSize; } in GetSize()
/trunk/main/soltools/ldump/
H A Dhashtbl.cxx82 m_lSize = lSize; in HashTable()
148 return h % m_lSize; in Hash()
160 lHash %= m_lSize; in DHash()
168 lPos++; if (lPos==m_lSize) lPos=0; in Probe()
174 return m_lElem>=m_lSize; in IsFull()
280 bEnd = !(n<m_lSize || pItem->IsFree()); in FindPos()
341 return double(m_lElem) / double(m_lSize); in CalcLoadFactor()
353 unsigned long lOldSize = m_lSize; // alte Daten sichern in SmartGrow()
356 m_lSize = (unsigned long) (m_dGrowFactor * m_lSize); // neue Gr��e in SmartGrow()
357 m_pData = new HashItem[m_lSize]; // neue Daten holen in SmartGrow()
[all …]
H A Dhashtbl.hxx37 unsigned long m_lSize; member in HashTable
76 unsigned long GetSize() const { return m_lSize; } in GetSize()

Completed in 21 milliseconds