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

  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocator.h 66 static void* reserveAndCommit(size_t reserveSize, size_t commitSize, Usage = UnknownUsage, bool writable = true, bool executable = false);
70 inline void* OSAllocator::reserveAndCommit(size_t reserveSize, size_t commitSize, Usage usage, bool writable, bool executable)
73 commit(base, commitSize, writable, executable);
TCSystemAlloc.cpp 510 size_t commitSize = min<size_t>(info.RegionSize, end - ptr);
511 void* newAddress = VirtualAlloc(ptr, commitSize, MEM_COMMIT, PAGE_READWRITE);
513 ptr += commitSize;
  /external/webkit/Source/JavaScriptCore/interpreter/
RegisterFile.h 110 static const size_t commitSize = 16 * 1024;
175 m_reservation = PageReservation::reserve(roundUpAllocationSize(bufferLength, commitSize), OSAllocator::JSVMStackPages);
177 size_t committedSize = roundUpAllocationSize(maxGlobals * sizeof(Register), commitSize);
205 size_t size = roundUpAllocationSize(reinterpret_cast<char*>(newEnd) - reinterpret_cast<char*>(m_commitEnd), commitSize);

Completed in 51 milliseconds