Home
last modified time | relevance | path

Searched refs:grow_by (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/
Dtransitions.cc273 int grow_by = new_capacity - capacity; in GrowPrototypeTransitionArray() local
274 array = isolate->factory()->CopyFixedArrayAndGrow(array, grow_by, TENURED); in GrowPrototypeTransitionArray()
Dfactory.h341 Handle<FixedArray> array, int grow_by,
Dfactory.cc1056 int grow_by, in CopyFixedArrayAndGrow() argument
1059 *array, grow_by, pretenure), in CopyFixedArrayAndGrow()
Dobjects.cc3038 int grow_by = new_map->unused_property_fields() + 1; in MigrateFastToFast() local
3041 isolate->factory()->CopyFixedArrayAndGrow(old_storage, grow_by); in MigrateFastToFast()
10009 int grow_by = new_capacity - capacity; in EnsureSpace() local
10011 isolate->factory()->CopyFixedArrayAndGrow(array, grow_by)); in EnsureSpace()
14598 int grow_by = capacity - entries->length(); in EnsureSpace() local
14600 isolate->factory()->CopyFixedArrayAndGrow(entries, grow_by, TENURED)); in EnsureSpace()
Dapi.cc959 int grow_by = new_size - data->length(); in EmbedderDataFor() local
960 data = isolate->factory()->CopyFixedArrayAndGrow(data, grow_by); in EmbedderDataFor()
/external/v8/src/heap/
Dheap.cc3809 AllocationResult Heap::CopyFixedArrayAndGrow(FixedArray* src, int grow_by, in CopyFixedArrayAndGrow() argument
3812 int new_len = old_len + grow_by; in CopyFixedArrayAndGrow()
3828 MemsetPointer(result->data_start() + old_len, undefined_value(), grow_by); in CopyFixedArrayAndGrow()
Dheap.h1936 CopyFixedArrayAndGrow(FixedArray* src, int grow_by, PretenureFlag pretenure);