Home
last modified time | relevance | path

Searched refs:EntryToIndex (Results 1 – 8 of 8) sorted by relevance

/external/v8/test/cctest/
Dtest-dictionary.cc120 set(EntryToIndex(entry), Smi::FromInt(key)); in insert()
121 set(EntryToIndex(entry) + 1, Smi::FromInt(value)); in insert()
Dtest-code-stub-assembler.cc288 Dictionary::EntryToIndex(entry) + Dictionary::kEntryKeyIndex; in TestNameDictionaryLookup()
/external/v8/src/
Dcode-stub-assembler.h280 compiler::Node* EntryToIndex(compiler::Node* entry, int field_index);
282 compiler::Node* EntryToIndex(compiler::Node* entry) { in EntryToIndex() function
283 return EntryToIndex<Dictionary>(entry, Dictionary::kEntryKeyIndex); in EntryToIndex()
Dobjects.cc9784 new_cache->set(EntryToIndex(entry), *k); in Put()
9794 return Code::cast(FixedArray::cast(get(EntryToIndex(entry)))->get(1)); in Lookup()
16178 int length = EntryToIndex(capacity); in New()
16244 uint32_t from_index = EntryToIndex(i); in Rehash()
16249 EntryToIndex(new_table->FindInsertionEntry(hash)); in Rehash()
16281 int index1 = EntryToIndex(entry1); in Swap()
16282 int index2 = EntryToIndex(entry2); in Swap()
16332 set(EntryToIndex(current) + Derived::kEntryKeyIndex, undefined); in Rehash()
17055 table->set(EntryToIndex(entry), *string); in LookupKey()
17080 stringset->set(EntryToIndex(entry), *name); in Add()
[all …]
Dobjects.h3239 Object* KeyAt(int entry) { return get(EntryToIndex(entry) + kEntryKeyIndex); } in KeyAt()
3251 static inline int EntryToIndex(int entry) { in EntryToIndex() function
3410 return this->get(Derived::EntryToIndex(entry) + 1); in ValueAt()
3415 this->set(Derived::EntryToIndex(entry) + 1, value); in ValueAtPut()
3560 Dictionary::EntryToIndex(entry) + Dictionary::kEntryDetailsIndex))); in DetailsAt()
3567 dict->set(Dictionary::EntryToIndex(entry) + Dictionary::kEntryDetailsIndex, in DetailsAtPut()
3806 return EntryToIndex(entry) + 1; in EntryToValueIndex()
3886 int EntryToIndex(int entry) { in EntryToIndex() function
3906 Object* next_entry = get(EntryToIndex(entry) + kChainOffset); in NextChainEntry()
3913 return get(EntryToIndex(entry)); in KeyAt()
[all …]
Dcode-stub-assembler.cc1552 Node* CodeStubAssembler::EntryToIndex(Node* entry, int field_index) { in EntryToIndex() function in v8::internal::CodeStubAssembler
1577 Node* index = EntryToIndex<Dictionary>(entry); in NameDictionaryLookup()
1602 Node* index = EntryToIndex<Dictionary>(entry); in NameDictionaryLookup()
1678 Node* index = EntryToIndex<Dictionary>(entry); in NumberDictionaryLookup()
Dobjects-inl.h7462 int index = dict->EntryToIndex(entry); in SetEntry()
7478 int index = dict->EntryToIndex(entry); in SetEntry()
7612 return get(EntryToIndex(entry) + kValueOffset); in ValueAt()
/external/v8/src/heap/
Dmark-compact.cc2464 uint32_t key_index = table->EntryToIndex(i); in MarkDependentCodeForDeoptimization()
2658 table->RawFieldOfElementAt(ObjectHashTable::EntryToIndex(i)); in ProcessWeakCollections()