HomeSort by relevance Sort by last modified time
    Searched defs:decommit (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocatorWin.cpp 64 void OSAllocator::decommit(void* address, size_t bytes) function in class:WTF::OSAllocator
OSAllocatorPosix.cpp 40 // To support the "reserve then commit" model, we have to initially decommit.
100 void OSAllocator::decommit(void* address, size_t bytes) function in class:WTF::OSAllocator
PageReservation.h 45 committed memory is no longer needed 'decommit' may be called to return the
47 currently decommitted, and decommit should only be called on memory regions that
54 protection before decommit is called.
88 void decommit(void* start, size_t size) function in class:WTF::PageReservation
96 OSAllocator::decommit(start, size);
OSAllocatorSymbian.cpp 93 // NOOP for code chunks (JIT) because we released them in decommit()
105 void OSAllocator::decommit(void* address, size_t bytes) function in class:WTF::OSAllocator
108 dataAllocatorInstance()->decommit(address, bytes);
110 deallocateCodeChunk(address); // for code chunk, decommit AND release
121 // The PageAllocatorSymbian class helps map OSAllocator calls for reserve/commit/decommit
132 // - OSAllocator::decommit() calls RChunk.decommit()
134 // call to decommit() would have returned the memory to the OS
191 bool PageAllocatorSymbian::decommit(void* address, size_t bytes) function in class:WTF::PageAllocatorSymbian
193 TInt error = m_chunk->Decommit(static_cast<char*>(address) - m_chunk->m_base, bytes)
    [all...]

Completed in 772 milliseconds