Searched refs:headerAddress (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeap.cpp858 for (Address headerAddress = startOfGap; headerAddress < page->end(); ) {
859 BasicObjectHeader* basicHeader = reinterpret_cast<BasicObjectHeader*>(headerAddress);
868 memset(headerAddress, 0, sizeof(Header));
871 headerAddress += size;
875 if (startOfGap != headerAddress) {
876 size_t size = headerAddress - startOfGap;
882 headerAddress += basicHeader->size();
883 startOfGap = headerAddress;
934 Address headerAddress local
1426 Address headerAddress = payload(); local
[all...]
H A DHeap.h249 Address headerAddress = address() + sizeof(LargeHeapObject<Header>) + headerPadding<Header>(); local
250 return reinterpret_cast<Header*>(headerAddress);
1462 Address headerAddress = m_currentAllocationPoint;
1465 Header* header = new (NotNull, headerAddress) Header(allocationSize, gcInfo);
1468 Address result = headerAddress + sizeof(*header);
1475 ASSERT(heapPageFromAddress(headerAddress + allocationSize - 1));

Completed in 72 milliseconds