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

  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocator.h 45 // These methods are symmetric; reserveUncommitted allocates VM in an uncommitted state,
48 static void* reserveUncommitted(size_t, Usage = UnknownUsage, bool writable = true, bool executable = false);
72 void* base = reserveUncommitted(reserveSize, usage, writable, executable);
OSAllocatorWin.cpp 41 void* OSAllocator::reserveUncommitted(size_t bytes, Usage, bool writable, bool executable)
PageReservation.h 107 return PageReservation(OSAllocator::reserveUncommitted(size, usage, writable, executable), size, writable, executable);
OSAllocatorSymbian.cpp 77 void* OSAllocator::reserveUncommitted(size_t reservationSize, Usage usage, bool , bool executable)
87 // Inverse operation of reserveUncommitted()
96 // Commit what was previously reserved via reserveUncommitted()
99 // For code chunks, we commit (early) in reserveUncommitted(), so NOOP
115 void* base = reserveUncommitted(bytes, usage, writable, executable);
128 // - OSAllocator::reserveUncommitted() requests lead to 1 or more bits being set in map
131 // reserved via reserveUncommitted() previously.
OSAllocatorPosix.cpp 36 void* OSAllocator::reserveUncommitted(size_t bytes, Usage usage, bool writable, bool executable)
PageAllocationAligned.cpp 57 void* reservationBase = OSAllocator::reserveUncommitted(reservationSize, usage, writable, executable);

Completed in 84 milliseconds