Home | History | Annotate | Download | only in heap

Lines Matching refs:allocationSize

1447     size_t allocationSize = size + sizeof(Header);
1449 allocationSize = (allocationSize + allocationMask) & ~allocationMask;
1450 return allocationSize;
1456 size_t allocationSize = allocationSizeFromSize(size);
1457 bool isLargeObject = allocationSize > blinkPageSize / 2;
1459 return allocateLargeObject(allocationSize, gcInfo);
1460 if (m_remainingAllocationSize < allocationSize)
1463 m_currentAllocationPoint += allocationSize;
1464 m_remainingAllocationSize -= allocationSize;
1465 Header* header = new (NotNull, headerAddress) Header(allocationSize, gcInfo);
1466 size_t payloadSize = allocationSize - sizeof(Header);
1475 ASSERT(heapPageFromAddress(headerAddress + allocationSize - 1));