Lines Matching refs:object_size
2046 HeapObject* Heap::AlignWithFiller(HeapObject* object, int object_size,
2049 int filler_size = allocation_size - object_size;
2057 CreateFillerObjectAt(object->address() + object_size, filler_size,
3381 AllocationResult Heap::AllocateCode(int object_size, bool immovable) {
3382 DCHECK(IsAligned(static_cast<intptr_t>(object_size), kCodeAlignment));
3383 AllocationResult allocation = AllocateRaw(object_size, CODE_SPACE);
3401 CreateFillerObjectAt(result->address(), object_size,
3403 allocation = lo_space_->AllocateRaw(object_size, EXECUTABLE);
3405 OnAllocationEvent(result, object_size);
3415 object_size <= code_space()->AreaSize());
3607 int object_size = map->instance_size();
3613 site != NULL ? object_size + AllocationMemento::kSize : object_size;
3620 CopyBlock(clone->address(), source->address(), object_size);
3624 reinterpret_cast<Address>(clone) + object_size);