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

/external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/
H A DPageAllocation.h1 #include <JavaScriptCore/PageAllocation.h>
/external/webkit/Source/WebCore/ForwardingHeaders/wtf/
H A DPageAllocation.h3 #include <JavaScriptCore/PageAllocation.h>
/external/webkit/Source/JavaScriptCore/wtf/
H A DPageAllocation.h67 PageAllocation
69 The PageAllocation class provides a cross-platform memory allocation interface
71 PageAllocation::allocate, and deallocated by calling deallocate on the
72 PageAllocation object. The PageAllocation holds the allocation's base pointer
76 the system page size, which can be accessed using PageAllocation::pageSize).
82 class PageAllocation : private PageBlock { class in namespace:WTF
84 PageAllocation() function in class:WTF::PageAllocation
99 static PageAllocation allocate(size_t size, OSAllocator::Usage usage = OSAllocator::UnknownUsage, bool writable = true, bool executable = false)
102 return PageAllocation(OSAllocato
119 PageAllocation(void* base, size_t size) function in class:WTF::PageAllocation
[all...]
H A DBumpPointerAllocator.h29 #include <wtf/PageAllocation.h>
91 void* operator new(size_t size, const PageAllocation& allocation)
97 BumpPointerPool(const PageAllocation& allocation)
122 PageAllocation allocation = PageAllocation::allocate(poolSize);
196 PageAllocation m_allocation;
H A DPageReservation.h29 #include <wtf/PageAllocation.h>
36 Like PageAllocation, the PageReservation class provides a cross-platform memory
/external/webkit/Source/JavaScriptCore/jit/
H A DExecutableAllocator.cpp54 PageAllocation allocation = PageAllocation::allocate(size, OSAllocator::JSJITCodePages, EXECUTABLE_POOL_WRITABLE, true);
H A DExecutableAllocator.h31 #include <wtf/PageAllocation.h>
103 typedef PageAllocation Allocation;

Completed in 120 milliseconds