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

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

Completed in 419 milliseconds