Searched refs:HashEntry (Results 1 - 8 of 8) sorted by relevance

/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashEntry.h1 //===- HashEntry.h ---------------------------------------------------------===//
22 /** \class HashEntry
23 * \brief HashEntry is the item in the bucket of hash table.
25 * mcld::HashEntry illustrates the demand from mcld::HashTable.
26 * Since HashTable can change the definition of the HashEntry by changing
27 * the template argument. class mcld::HashEntry here is used to show the
29 * of the hash table which has no relation to mcld::HashEntry
31 * Since mcld::HashEntry here is a special class whose size is changing,
33 * are doing when you let a new class inherit from mcld::HashEntry.
36 class HashEntry class in namespace:mcld
[all...]
/frameworks/compile/mclinker/include/mcld/Support/
H A DPathCache.h16 #include "mcld/ADT/HashEntry.h"
26 typedef HashEntry<llvm::StringRef,
/frameworks/compile/mclinker/include/mcld/LD/
H A DStringUnorderedMap.h85 struct HashEntry { struct in class:mcld::StringUnorderedMap
88 HashEntry *next;
90 typedef Allocator::template rebind<HashEntry>::other HashEntryAllocator;
97 HashEntry **m_HashTable;
140 HashEntry **tmpTable = new HashEntry*[pCapacity];
141 std::memset(tmpTable, 0, pCapacity * sizeof(HashEntry*));
144 for (HashEntry *j = this->m_HashTable[i]; j != 0; ) {
145 HashEntry *nextJ = j->next;
167 HashEntry *
[all...]
H A DArchive.h15 #include <mcld/ADT/HashEntry.h>
76 typedef HashEntry<uint32_t,
92 typedef HashEntry<const llvm::StringRef,
/frameworks/compile/mclinker/unittests/
H A DHashTableTest.cpp11 #include "mcld/ADT/HashEntry.h"
80 typedef HashEntry<int*, int, PtrCompare> HashEntryType;
98 typedef HashEntry<int, int, IntCompare> HashEntryType;
106 typedef HashEntry<int, int, IntCompare> HashEntryType;
123 typedef HashEntry<int, int, IntCompare> HashEntryType;
145 typedef HashEntry<int, int, IntCompare> HashEntryType;
170 typedef HashEntry<int, int, IntCompare> HashEntryType;
194 typedef HashEntry<int, int, IntCompare> HashEntryType;
230 typedef HashEntry<int, int, IntCompare> HashEntryType;
251 typedef HashEntry<in
[all...]
/frameworks/native/include/utils/
H A DZipFileRO.h225 typedef struct HashEntry { struct in class:android::ZipFileRO
229 } HashEntry; typedef in class:android::ZipFileRO
257 HashEntry* mHashTable;
/frameworks/compile/mclinker/include/mcld/Target/
H A DGNULDBackend.h17 #include <mcld/ADT/HashEntry.h>
409 typedef HashEntry<LDSymbol*, size_t, SymCompare> HashEntryType;
/frameworks/native/libs/utils/
H A DZipFileRO.cpp354 mHashTable = (HashEntry*) calloc(mHashTableSize, sizeof(HashEntry));
503 HashEntry hashEntry = mHashTable[ent];

Completed in 1160 milliseconds