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

  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Heap.h 64 const size_t allocationGranularity = 8;
65 const size_t allocationMask = allocationGranularity - 1;
66 const size_t objectStartBitMapSize = (blinkPageSize + ((8 * allocationGranularity) - 1)) / (8 * allocationGranularity);
144 return (allocationGranularity - (sizeof(Header) % allocationGranularity)) % allocationGranularity;
274 // encountering heap space of size allocationGranularity to mark it as
    [all...]
Heap.cpp 667 ASSERT(minSize >= allocationGranularity);
924 // If ASan is supported we add allocationGranularity bytes to the allocated space and
927 allocationSize += allocationGranularity;
941 // Poison the object header and allocationGranularity bytes after the object
943 ASAN_POISON_MEMORY_REGION(largeObject->address() + largeObject->size(), allocationGranularity);
957 // Unpoison the object header and allocationGranularity bytes after the
960 ASAN_UNPOISON_MEMORY_REGION(object->address() + object->size(), allocationGranularity);
    [all...]

Completed in 219 milliseconds