Searched refs:table_index (Results 1 – 1 of 1) sorted by relevance
49 size_t table_index = TableIndex(native_offset); in AddEntry() local50 while (in_use_[table_index]) { in AddEntry()51 table_index = (table_index + 1) % entries_; in AddEntry()53 in_use_[table_index] = true; in AddEntry()54 SetCodeOffset(table_index, native_offset); in AddEntry()55 DCHECK_EQ(native_offset, GetCodeOffset(table_index)); in AddEntry()56 SetReferences(table_index, references); in AddEntry()64 uint32_t GetCodeOffset(size_t table_index) { in GetCodeOffset() argument66 size_t table_offset = (table_index * EntryWidth()) + sizeof(uint32_t); in GetCodeOffset()73 void SetCodeOffset(size_t table_index, uint32_t native_offset) { in SetCodeOffset() argument[all …]