Searched refs:allocate_page_size (Results 1 - 5 of 5) sorted by relevance
/third_party/node/deps/v8/src/utils/ |
H A D | allocation.cc | 356 const size_t allocate_page_size = params.page_allocator->AllocatePageSize(); in InitReservation() local 357 CHECK(IsAligned(params.reservation_size, allocate_page_size)); in InitReservation() 359 (IsAligned(params.base_alignment, allocate_page_size) && in InitReservation() 360 IsAligned(params.base_bias_size, allocate_page_size))); in InitReservation() 378 RoundUp(params.base_alignment, allocate_page_size)); in InitReservation() 393 RoundUp(params.base_alignment, allocate_page_size)) - in InitReservation() 394 RoundUp(params.base_bias_size, allocate_page_size); in InitReservation()
|
/third_party/node/deps/v8/src/base/ |
H A D | bounded-page-allocator.cc | 12 size_t allocate_page_size, PageInitializationMode page_initialization_mode) in BoundedPageAllocator() 13 : allocate_page_size_(allocate_page_size), in BoundedPageAllocator() 19 DCHECK(IsAligned(allocate_page_size, page_allocator->AllocatePageSize())); in BoundedPageAllocator() 10 BoundedPageAllocator( v8::PageAllocator* page_allocator, Address start, size_t size, size_t allocate_page_size, PageInitializationMode page_initialization_mode) BoundedPageAllocator() argument
|
H A D | bounded-page-allocator.h | 42 size_t size, size_t allocate_page_size,
|
/third_party/node/deps/v8/src/heap/ |
H A D | code-range.cc | 125 const size_t allocate_page_size = page_allocator->AllocatePageSize(); in InitReservation() local 130 params.base_bias_size = RoundUp(reserved_area, allocate_page_size); in InitReservation() 133 GetCodeRangeAddressHint()->GetAddressHint(requested, allocate_page_size); in InitReservation()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-code-manager.cc | 1994 size_t allocate_page_size = page_allocator->AllocatePageSize(); in TryAllocate() local 1995 size = RoundUp(size, allocate_page_size); in TryAllocate() 2001 VirtualMemory mem(page_allocator, size, hint, allocate_page_size, in TryAllocate()
|
Completed in 7 milliseconds