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

  /external/webkit/Source/JavaScriptCore/interpreter/
RegisterFile.cpp 50 m_reservation.decommit(base, reinterpret_cast<intptr_t>(m_commitEnd) - reinterpret_cast<intptr_t>(base));
67 m_reservation.decommit(m_start, reinterpret_cast<intptr_t>(m_commitEnd) - reinterpret_cast<intptr_t>(m_start));
  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocator.h 51 // These methods are symmetric; they commit or decommit a region of VM (uncommitted VM should
53 // Clients should only call commit on uncommitted regions and decommit on committed regions.
55 static void decommit(void*, size_t);
81 // On most platforms we can actually skip this final decommit; releasing the VM will
82 // implicitly decommit any physical memory in the region. This is not true on WINCE.
84 decommit(decommitBase, decommitSize);
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);
PageAllocatorSymbian.h 53 Decommit(0, m_maxSize);
86 bool decommit(void*, size_t);
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...]
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
  /external/webkit/Source/JavaScriptCore/jit/
ExecutableAllocatorFixedVMPool.cpp 446 m_reservation.decommit(pointer, size);
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 760 milliseconds