Home
last modified time | relevance | path

Searched refs:new_nof (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/
Dtransitions.cc117 int new_nof = 0; in Insert() local
129 new_nof = number_of_transitions; in Insert()
142 ++new_nof; in Insert()
143 CHECK_LE(new_nof, kMaxNumberOfTransitions); in Insert()
147 if (new_nof <= array->Capacity()) { in Insert()
148 array->SetNumberOfTransitions(new_nof); in Insert()
162 new_nof, in Insert()
175 new_nof = number_of_transitions; in Insert()
184 ++new_nof; in Insert()
190 result->SetNumberOfTransitions(new_nof); in Insert()
Dcode-stub-assembler.cc7913 TNode<Smi> new_nof = SmiAdd(nof, SmiConstant(1)); in Add() local
7917 TNode<Smi> required_capacity_pseudo_smi = SmiAdd(new_nof, SmiShr(new_nof, 1)); in Add()
7921 CSA_ASSERT(this, SmiAbove(capacity, new_nof)); in Add()
7922 TNode<Smi> half_of_free_elements = SmiShr(SmiSub(capacity, new_nof), 1); in Add()
7935 SetNumberOfElements<Dictionary>(dictionary, new_nof); in Add()
Dobjects.cc4223 int new_nof = new_map->NumberOfOwnDescriptors(); in MigrateFastToFast() local
4227 DCHECK(old_nof <= new_nof); in MigrateFastToFast()
4283 for (int i = old_nof; i < new_nof; i++) { in MigrateFastToFast()
16877 int new_nof = table->NumberOfElements() + n; in EnsureCapacity() local
16884 isolate, new_nof, should_pretenure ? TENURED : NOT_TENURED); in EnsureCapacity()
/external/v8/src/builtins/
Dbuiltins-internal-gen.cc466 TNode<Smi> new_nof = SmiSub(nof, SmiConstant(1)); in DeleteDictionaryProperty() local
467 SetNumberOfElements<NameDictionary>(properties, new_nof); in DeleteDictionaryProperty()
476 GotoIf(SmiGreaterThan(new_nof, SmiShr(capacity, 2)), &shrinking_done); in DeleteDictionaryProperty()
477 GotoIf(SmiLessThan(new_nof, SmiConstant(16)), &shrinking_done); in DeleteDictionaryProperty()