Home
last modified time | relevance | path

Searched refs:GetPageAllocator (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/
Dallocation.cc49 V8::GetCurrentPlatform()->GetPageAllocator(); in Construct()
61 v8::PageAllocator* GetPageAllocator() { return page_allocator.Get(); } in GetPageAllocator() function
134 size_t AllocatePageSize() { return GetPageAllocator()->AllocatePageSize(); } in AllocatePageSize()
136 size_t CommitPageSize() { return GetPageAllocator()->CommitPageSize(); } in CommitPageSize()
139 GetPageAllocator()->SetRandomMmapSeed(seed); in SetRandomMmapSeed()
142 void* GetRandomMmapAddr() { return GetPageAllocator()->GetRandomMmapAddr(); } in GetRandomMmapAddr()
147 DCHECK_EQ(0UL, size & (GetPageAllocator()->AllocatePageSize() - 1)); in AllocatePages()
151 GetPageAllocator()->AllocatePages(address, size, alignment, access); in AllocatePages()
165 DCHECK_EQ(0UL, size & (GetPageAllocator()->AllocatePageSize() - 1)); in FreePages()
166 bool result = GetPageAllocator()->FreePages(address, size); in FreePages()
[all …]
Dd8.cc167 PageAllocator* GetPageAllocator() override { in GetPageAllocator() function in v8::__anoncd2d3b7e0111::PredictablePlatform
168 return platform_->GetPageAllocator(); in GetPageAllocator()
/external/v8/src/libplatform/
Ddefault-platform.h73 v8::PageAllocator* GetPageAllocator() override; in NON_EXPORTED_BASE()
Ddefault-platform.cc251 v8::PageAllocator* DefaultPlatform::GetPageAllocator() { in GetPageAllocator() function in v8::platform::DefaultPlatform
/external/v8/include/
Dv8-platform.h254 virtual PageAllocator* GetPageAllocator() { in GetPageAllocator() function