Home | History | Annotate | Download | only in oatdump

Lines Matching full:object_bytes

1237     size_t object_bytes = obj->SizeOf();
1238 size_t alignment_bytes = RoundUp(object_bytes, kObjectAlignment) - object_bytes;
1239 state->stats_.object_bytes += object_bytes;
1368 vmap_table_bytes + quick_oat_code_size + object_bytes;
1376 state->stats_.Update(obj_class->GetDescriptor(&temp), object_bytes);
1398 size_t object_bytes;
1425 object_bytes(0),
1448 void Update(const char* descriptor, size_t object_bytes) {
1451 it->second.bytes += object_bytes;
1454 sizes_and_counts.Put(descriptor, SizeAndCount(object_bytes, 1));
1467 return (static_cast<double>(size) / static_cast<double>(object_bytes)) * 100;
1580 << "art_file_bytes = header_bytes + object_bytes + alignment_bytes\n";
1584 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
1588 object_bytes, PercentOfFileBytes(object_bytes),
1592 CHECK_EQ(file_bytes, bitmap_bytes + header_bytes + object_bytes + alignment_bytes);
1595 os << "object_bytes breakdown:\n";
1603 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
1609 CHECK_EQ(object_bytes, object_bytes_total);