Home
last modified time | relevance | path

Searched refs:HashTable (Results 1 – 6 of 6) sorted by relevance

/trunk/main/tools/workben/
H A Dhashtbl.hxx37 class HashTable class
79 HashTable
84 double dGrowFactor = HashTable::m_defDefGrowFactor /* 2.0 */
87 ~HashTable();
104 HashTable const& m_aTable;
115 HashTableIterator(HashTable const&);
127 double dMaxLoadFactor = HashTable::m_defMaxLoadFactor, \
128 double dGrowFactor = HashTable::m_defDefGrowFactor \
157 double dMaxLoadFactor = HashTable::m_defMaxLoadFactor, \
158 double dGrowFactor = HashTable::m_defDefGrowFactor \
[all …]
H A Dhashtbl.cxx81 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()
199 ULONG HashTable::Probe(ULONG lPos) const in Probe()
206 BOOL HashTable::IsFull() const in IsFull()
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()
[all …]
/trunk/main/soltools/ldump/
H A Dhashtbl.cxx77 /*static*/ double HashTable::m_defMaxLoadFactor = 0.5;
78 /*static*/ double HashTable::m_defDefGrowFactor = 2.0;
80 HashTable::HashTable(unsigned long lSize, bool bOwner, double dMaxLoadFactor, double dGrowFactor) in HashTable() function in HashTable
90 HashTable::~HashTable() in ~HashTable()
124 void HashTable::OnDeleteObject(void*) in OnDeleteObject()
128 unsigned long HashTable::Hash(const char *Key) const in Hash()
172 bool HashTable::IsFull() const in IsFull()
293 void* HashTable::Find(const char *Key) const in Find()
309 void* HashTable::Delete( const char * Key) in Delete()
338 double HashTable::CalcLoadFactor() const in CalcLoadFactor()
[all …]
H A Dhashtbl.hxx35 class HashTable class
65 HashTable
69 double dMaxLoadFactor = HashTable::m_defMaxLoadFactor /* 0.8 */,
70 double dGrowFactor = HashTable::m_defDefGrowFactor /* 2.0 */
73 virtual ~HashTable();
90 HashTable const& m_aTable;
103 HashTableIterator(HashTable const&);
H A Dldump.cxx45 class ExportSet : public HashTable
51 double dMaxLoadFactor = HashTable::m_defMaxLoadFactor, in ExportSet()
52 double dGrowFactor = HashTable::m_defDefGrowFactor in ExportSet()
54 : HashTable(lSize,false,dMaxLoadFactor,dGrowFactor) {} in ExportSet()
59 { return (LibExport *) HashTable::Find((char *) Key); } in Find()
62 { return HashTable::Insert((char *) Key, (void*) Object); } in Insert()
65 { return (LibExport *) HashTable::Delete ((char *) Key); } in Delete()
438 ExportSetIter(HashTable const& aTable) in ExportSetIter()
/trunk/main/sal/osl/unx/
H A Dthread.c593 static HashEntry* HashTable[31]; variable
594 static int HashSize = sizeof(HashTable) / sizeof(HashTable[0]);
606 pEntry = HashTable[HASHID(hThread)]; in lookupThreadId()
628 pEntry = HashTable[HASHID(hThread)]; in insertThreadId()
655 HashTable[HASHID(hThread)] = pEntry; in insertThreadId()
669 pEntry = HashTable[HASHID(hThread)]; in removeThreadId()
684 HashTable[HASHID(hThread)] = pEntry->Next; in removeThreadId()

Completed in 56 milliseconds