Home | History | Annotate | Download | only in src

Lines Matching refs:object_size

587 LargePage* MemoryAllocator::AllocateLargePage(intptr_t object_size,
590 MemoryChunk* chunk = AllocateChunk(object_size, executable, owner);
2579 MaybeObject* LargeObjectSpace::AllocateRaw(int object_size,
2588 if (Size() + object_size > max_capacity_) {
2593 AllocateLargePage(object_size, executable, this);
2595 ASSERT(page->area_size() >= object_size);
2598 objects_size_ += object_size;
2624 heap()->incremental_marking()->OldSpaceStep(object_size);