Searched defs:HashEntry (Results 1 - 4 of 4) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DExpandedNameTable.java87 * internal HashEntry array.
102 private HashEntry[] m_table;
123 m_table = new HashEntry[m_capacity];
138 m_table[i] = new HashEntry(m_defaultExtendedTypes[i], i, i, null);
192 // Calculate the index into the HashEntry table.
199 for (HashEntry e = m_table[index]; e != null; e = e.next)
210 // Expand the internal HashEntry array if necessary.
233 HashEntry entry = new HashEntry(newET, m_nextType, hash, m_table[index]);
248 HashEntry[] oldTabl
375 private static final class HashEntry class in class:ExpandedNameTable
382 protected HashEntry(ExtendedType key, int value, int hash, HashEntry next) method in class:ExpandedNameTable.HashEntry
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DLookup.h56 class HashEntry { class in namespace:JSC
91 void setNext(HashEntry *next) { m_next = next; }
92 HashEntry* next() const { return m_next; }
120 HashEntry* m_next;
129 mutable const HashEntry* table; // Table allocated at runtime.
146 ALWAYS_INLINE const HashEntry* entry(JSGlobalData* globalData, const Identifier& identifier) const
152 ALWAYS_INLINE const HashEntry* entry(ExecState* exec, const Identifier& identifier) const
159 ALWAYS_INLINE const HashEntry* entry(const Identifier& identifier) const
163 const HashEntry* entry = &table[identifier.impl()->existingHash() & compactHashSizeMask];
181 void setUpStaticFunctionSlot(ExecState*, const HashEntry*, JSObjec
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
H A Datom.c208 } HashEntry; typedef in typeref:struct:HashEntry_Rec
211 HashEntry *entry;
226 htable->entry = (HashEntry *) malloc(sizeof(HashEntry)*fsize);
/external/hyphenation/
H A Dhyphen.c77 typedef struct _HashEntry HashEntry; typedef in typeref:struct:_HashEntry
83 HashEntry *entries[HASH_SIZE];
87 HashEntry *next;
125 HashEntry *e, *next;
143 HashEntry *e;
146 e = hnj_malloc (sizeof(HashEntry));
158 HashEntry *e;
223 HashEntry *e;
294 HashEntry *e;

Completed in 159 milliseconds