Searched defs:HashEntry (Results 1 - 3 of 3) sorted by last modified time

/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/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/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...]

Completed in 3531 milliseconds