HomeSort by relevance Sort by last modified time
    Searched refs:PageAllocation (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/
PageAllocation.h 1 #include <JavaScriptCore/PageAllocation.h>
  /external/webkit/Source/WebCore/ForwardingHeaders/wtf/
PageAllocation.h 3 #include <JavaScriptCore/PageAllocation.h>
  /external/webkit/Source/JavaScriptCore/wtf/
PageAllocation.h 67 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 {
84 PageAllocation()
99 static PageAllocation allocate(size_t size, OSAllocator::Usage usage = OSAllocator::UnknownUsage, bool writable = true, bool executable = false)
102 return PageAllocation(OSAllocator::reserveAndCommit(size, usage, writable, executable), size)
    [all...]
BumpPointerAllocator.h 29 #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;
PageReservation.h 29 #include <wtf/PageAllocation.h>
36 Like PageAllocation, the PageReservation class provides a cross-platform memory
  /external/webkit/Source/JavaScriptCore/jit/
ExecutableAllocator.cpp 54 PageAllocation allocation = PageAllocation::allocate(size, OSAllocator::JSJITCodePages, EXECUTABLE_POOL_WRITABLE, true);
ExecutableAllocator.h 31 #include <wtf/PageAllocation.h>
103 typedef PageAllocation Allocation;

Completed in 2486 milliseconds