Home
last modified time | relevance | path

Searched refs:max_capacity (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/heap/
Dspaces.h1003 bool SetUp(intptr_t max_capacity, intptr_t capacity_executable);
1647 PagedSpace(Heap* heap, intptr_t max_capacity, AllocationSpace id,
2596 OldSpace(Heap* heap, intptr_t max_capacity, AllocationSpace id, in OldSpace() argument
2598 : PagedSpace(heap, max_capacity, id, executable) {} in OldSpace()
2619 MapSpace(Heap* heap, intptr_t max_capacity, AllocationSpace id) in MapSpace() argument
2620 : PagedSpace(heap, max_capacity, id, NOT_EXECUTABLE), in MapSpace()
2659 CellSpace(Heap* heap, intptr_t max_capacity, AllocationSpace id) in CellSpace() argument
2660 : PagedSpace(heap, max_capacity, id, NOT_EXECUTABLE) {} in CellSpace()
2684 PropertyCellSpace(Heap* heap, intptr_t max_capacity, AllocationSpace id) in PropertyCellSpace() argument
2685 : PagedSpace(heap, max_capacity, id, NOT_EXECUTABLE) {} in PropertyCellSpace()
[all …]
Dspaces.cc880 PagedSpace::PagedSpace(Heap* heap, intptr_t max_capacity, AllocationSpace id, in PagedSpace() argument
893 (RoundDown(max_capacity, Page::kPageSize) / Page::kPageSize) * AreaSize(); in PagedSpace()
2797 LargeObjectSpace::LargeObjectSpace(Heap* heap, intptr_t max_capacity, in LargeObjectSpace() argument
2800 max_capacity_(max_capacity), in LargeObjectSpace()
/external/v8/src/
Dhydrogen.cc1326 HValue* max_capacity = AddUncasted<HAdd>(current_capacity, max_gap); in BuildCheckForCapacityGrow() local
1328 Add<HBoundsCheck>(key, max_capacity); in BuildCheckForCapacityGrow()