Lines Matching full:entry
37 inline static int GetKeyIndex(int entry) in GetKeyIndex() argument
39 return HashTable::TABLE_HEADER_SIZE + entry * GetEntrySize() + ENTRY_KEY_INDEX; in GetKeyIndex()
42 inline static int GetValueIndex(int entry) in GetValueIndex() argument
44 return HashTable::TABLE_HEADER_SIZE + entry * GetEntrySize() + ENTRY_VALUE_INDEX; in GetValueIndex()
47 inline static int GetEntryIndex(int entry) in GetEntryIndex() argument
49 return HashTable::TABLE_HEADER_SIZE + entry * GetEntrySize(); in GetEntryIndex()
89 …for (uint32_t entry = GetFirstPosition(hash, size);; entry = GetNextPosition(entry, count++, size)… in FindEntry() local
90 keyValue = GetKey(thread, entry); in FindEntry()
98 return entry; in FindEntry()
106 int entry = FindEntry(thread, key); in ContainsModule() local
107 return entry != -1; in ContainsModule()
112 int entry = FindEntry(thread, key); in GetModule() local
113 ASSERT(entry != -1); in GetModule()
114 return GetValue(thread, entry); in GetModule()
117 inline void SetEntry(const JSThread *thread, int entry, in SetEntry() argument
123 SetKey(thread, entry, keyValue); in SetEntry()
124 SetValue(thread, entry, valueValue); in SetEntry()