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

  /external/webkit/JavaScriptCore/interpreter/
RegisterFile.h 116 static const size_t commitSize = 1 << 14;
187 m_buffer = static_cast<Register*>(VirtualAlloc(0, roundUpAllocationSize(bufferLength, commitSize), MEM_RESERVE, PAGE_READWRITE));
196 size_t committedSize = roundUpAllocationSize(maxGlobals * sizeof(Register), commitSize);
243 size_t size = roundUpAllocationSize(reinterpret_cast<char*>(newEnd) - reinterpret_cast<char*>(m_commitEnd), commitSize);
  /external/webkit/JavaScriptCore/wtf/
TCSystemAlloc.cpp 509 size_t commitSize = min<size_t>(info.RegionSize, end - ptr);
510 void* newAddress = VirtualAlloc(ptr, commitSize, MEM_COMMIT, PAGE_READWRITE);
512 ptr += commitSize;

Completed in 53 milliseconds