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

  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Heap.cpp 601 ASSERT(!((reinterpret_cast<uintptr_t>(address) + sizeof(Header)) & allocationMask));
602 ASSERT(!(size & allocationMask));
631 ASSERT(!(size & allocationMask));
654 ASSERT(!(reinterpret_cast<uintptr_t>(result) & allocationMask));
933 COMPILE_ASSERT(!(sizeof(HeapPage<Header>) & allocationMask), page_header_incorrectly_aligned);
    [all...]
Heap.h 58 const size_t allocationMask = allocationGranularity - 1;
60 const size_t reservedForObjectBitMap = ((objectStartBitMapSize + allocationMask) & ~allocationMask);
192 COMPILE_ASSERT(!(sizeof(LargeHeapObject<Header>) & allocationMask), large_heap_object_header_misaligned);
480 return (blinkPagePayloadSize() - sizeof(HeapPage) - headerPadding<Header>()) & ~allocationMask;
    [all...]

Completed in 188 milliseconds