Searched refs:HashTable (Results 1 – 8 of 8) sorted by relevance
/aoo41x/main/soldep/inc/soldep/ |
H A D | hashtbl.hxx | 38 class HashTable class 80 HashTable 85 double dGrowFactor = HashTable::m_defDefGrowFactor /* 2.0 */ 88 virtual ~HashTable(); 105 HashTable const& m_aTable; 116 HashTableIterator(HashTable const&); 128 double dMaxLoadFactor = HashTable::m_defMaxLoadFactor, \ 129 double dGrowFactor = HashTable::m_defDefGrowFactor \ 136 using HashTable::Insert; \ 160 double dGrowFactor = HashTable::m_defDefGrowFactor \ [all …]
|
/aoo41x/main/tools/workben/ |
H A D | hashtbl.hxx | 37 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 D | hashtbl.cxx | 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() 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 …]
|
/aoo41x/main/soltools/ldump/ |
H A D | hashtbl.cxx | 77 /*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 D | hashtbl.hxx | 35 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 D | ldump.cxx | 45 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()
|
/aoo41x/main/soldep/bootstrp/ |
H A D | hashtbl.cxx | 74 /*static*/ double HashTable::m_defMaxLoadFactor = 0.8; 77 HashTable::HashTable(sal_uIntPtr lSize, sal_Bool bOwner, double dMaxLoadFactor, double dGrowFactor) in HashTable() function in HashTable 94 HashTable::~HashTable() in ~HashTable() 120 void* HashTable::GetObjectAt(sal_uIntPtr lPos) const in GetObjectAt() 130 void HashTable::OnDeleteObject(void*) in OnDeleteObject() 195 sal_uIntPtr HashTable::Probe(sal_uIntPtr lPos) const in Probe() 202 sal_Bool HashTable::IsFull() const in IsFull() 336 void* HashTable::Find(ByteString const& Key) const in Find() 352 void* HashTable::Delete(ByteString const& Key) in Delete() 381 double HashTable::CalcLoadFactor() const in CalcLoadFactor() [all …]
|
/aoo41x/main/sal/osl/unx/ |
H A D | thread.c | 594 static HashEntry* HashTable[31]; variable 595 static int HashSize = sizeof(HashTable) / sizeof(HashTable[0]); 607 pEntry = HashTable[HASHID(hThread)]; in lookupThreadId() 629 pEntry = HashTable[HASHID(hThread)]; in insertThreadId() 656 HashTable[HASHID(hThread)] = pEntry; in insertThreadId() 670 pEntry = HashTable[HASHID(hThread)]; in removeThreadId() 685 HashTable[HASHID(hThread)] = pEntry->Next; in removeThreadId()
|
Completed in 39 milliseconds