Lines Matching defs:bytes
1122 SizeAndCount(size_t bytes, size_t count) : bytes(bytes), count(count) {}
1123 size_t bytes;
1132 it->second.bytes += object_bytes;
1264 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
1265 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
1266 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
1267 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
1280 double average = static_cast<double>(sizes_and_count.second.bytes) /
1282 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
1283 os << StringPrintf("%32s %8zd bytes %6zd instances "
1284 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
1285 descriptor.c_str(), sizes_and_count.second.bytes,
1287 object_bytes_total += sizes_and_count.second.bytes;
1293 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1294 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1295 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1296 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1297 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1298 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
1308 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
1313 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1314 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1315 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
1334 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
1335 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
1337 // Number of bytes for a method to be considered large. Based on the 4000 basic block
1338 // threshold, we assume 2 bytes per instruction and 2 instructions per block.