Searched refs:new_nof (Results 1 – 5 of 5) sorted by relevance
/third_party/node/deps/v8/src/objects/ |
D | transitions.cc | 131 int new_nof = 0; in Insert() local 158 new_nof = number_of_transitions + 1; in Insert() 159 CHECK_LE(new_nof, kMaxNumberOfTransitions); in Insert() 164 if (new_nof <= array.Capacity()) { in Insert() 167 array.SetNumberOfTransitions(new_nof); in Insert() 181 new_nof, in Insert() 203 new_nof = number_of_transitions + 1; in Insert() 204 result->SetNumberOfTransitions(new_nof); in Insert()
|
D | js-objects.cc | 3084 int new_nof = new_map->NumberOfOwnDescriptors(); in MigrateFastToFast() local 3088 DCHECK(old_nof <= new_nof); in MigrateFastToFast() 3134 for (InternalIndex i : InternalIndex::Range(old_nof, new_nof)) { in MigrateFastToFast()
|
D | objects.cc | 5857 int new_nof = table->NumberOfElements() + n; in EnsureCapacity() local 5863 isolate, new_nof, in EnsureCapacity()
|
/third_party/node/deps/v8/src/builtins/ |
D | builtins-internal-gen.cc | 618 TNode<Smi> new_nof = SmiSub(nof, SmiConstant(1)); in DictionarySpecificDelete() local 619 SetNumberOfElements<NameDictionary>(properties, new_nof); in DictionarySpecificDelete() 628 GotoIf(SmiGreaterThan(new_nof, SmiShr(capacity, 2)), &shrinking_done); in DictionarySpecificDelete() 629 GotoIf(SmiLessThan(new_nof, SmiConstant(16)), &shrinking_done); in DictionarySpecificDelete()
|
/third_party/node/deps/v8/src/codegen/ |
D | code-stub-assembler.cc | 8775 TNode<Smi> new_nof = SmiAdd(nof, SmiConstant(1)); in Add() local 8779 TNode<Smi> required_capacity_pseudo_smi = SmiAdd(new_nof, SmiShr(new_nof, 1)); in Add() 8783 CSA_DCHECK(this, SmiAbove(capacity, new_nof)); in Add() 8784 TNode<Smi> half_of_free_elements = SmiShr(SmiSub(capacity, new_nof), 1); in Add() 8797 SetNumberOfElements<Dictionary>(dictionary, new_nof); in Add() 15432 TNode<Uint32T> new_nof = Uint32Sub(nof, Uint32Constant(1)); in SwissNameDictionaryUpdateCountsForDeletion() local 15436 new_nof); in SwissNameDictionaryUpdateCountsForDeletion() 15441 new_nof_var = new_nof; in SwissNameDictionaryUpdateCountsForDeletion()
|