Searched refs:object_size (Results 1 - 3 of 3) sorted by relevance

/art/runtime/gc/space/
H A Dspace_test.h130 void SizeFootPrintGrowthLimitAndTrimBody(MallocSpace* space, intptr_t object_size,
132 void SizeFootPrintGrowthLimitAndTrimDriver(size_t object_size, CreateSpaceFn create_space);
142 intptr_t object_size,
145 if (((object_size > 0 && object_size >= static_cast<intptr_t>(growth_limit))) ||
146 ((object_size < 0 && -object_size >= static_cast<intptr_t>(growth_limit)))) {
168 size_t max_objects = (growth_limit / (object_size > 0 ? object_size : 8)) + 1;
180 if (object_size >
141 SizeFootPrintGrowthLimitAndTrimBody(MallocSpace* space, intptr_t object_size, int round, size_t growth_limit) argument
318 SizeFootPrintGrowthLimitAndTrimDriver(size_t object_size, CreateSpaceFn create_space) argument
[all...]
/art/runtime/gc/collector/
H A Dsemi_space.cc514 const size_t object_size = obj->SizeOf(); local
521 forward_address = promo_dest_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated,
525 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr,
571 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr,
579 forward_address = fallback_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated,
592 CopyAvoidingDirtyingPages(reinterpret_cast<void*>(forward_address), obj, object_size);
/art/compiler/
H A Dimage_writer.cc507 size_t object_size = object->SizeOf(); local
614 size_t offset_delta = RoundUp(object_size, kObjectAlignment); // 64-bit alignment

Completed in 65 milliseconds