Home | History | Annotate | Download | only in heap

Lines Matching refs:allocationGranularity

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
2200 COMPILE_ASSERT(!ShouldBeTraced<Traits>::value || sizeof(T) > blink::allocationGranularity || Traits::canInitializeWithMemset, HeapOverallocationCanCauseSpuriousVisits);