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

  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Heap.h 52 const size_t blinkPageSize = 1 << blinkPageSizeLog2;
53 const size_t blinkPageOffsetMask = blinkPageSize - 1;
59 const size_t objectStartBitMapSize = (blinkPageSize + ((8 * allocationGranularity) - 1)) / (8 * allocationGranularity);
82 return blinkPageSize - 2 * osPageSize();
95 return reinterpret_cast<Address>(reinterpret_cast<uintptr_t>(address - 1) & blinkPageBaseMask) + blinkPageSize;
147 // be within the same aligned blinkPageSize as the this-pointer.
288 // Finally if the object is a large object (> blinkPageSize/2) then it is
461 // Returns true for the whole blinkPageSize page that the page is on, even
468 return blinkPageStart <= addr && addr < blinkPageStart + blinkPageSize;
    [all...]
Heap.cpp 213 // Overallocate by blinkPageSize and 2 times OS page size to
214 // ensure a chunk of memory which is blinkPageSize aligned and
217 size_t allocationSize = payloadSize + 2 * osPageSize() + blinkPageSize;
572 // Check that large pages are blinkPageSize aligned (modulo the
936 heap->stats().increaseAllocatedSpace(blinkPageSize);
956 stats.increaseAllocatedSpace(blinkPageSize);
980 heap()->stats().increaseAllocatedSpace(blinkPageSize);
    [all...]
HeapTest.cpp     [all...]

Completed in 59 milliseconds