Lines Matching refs:bytes

705     os << StringPrintf("Dex file exported at %s (%zd bytes)\n", out_dex_path.c_str(), fsize);
765 // When this was picked, the largest arm method was 55,256 bytes and arm64 was 50,412 bytes.
1944 SizeAndCount(size_t bytes_in, size_t count_in) : bytes(bytes_in), count(count_in) {}
1945 size_t bytes;
1954 it->second.bytes += object_bytes_in;
2086 indent_os << StringPrintf("header_bytes = %8zd (%2.0f%% of art file bytes)\n"
2087 "object_bytes = %8zd (%2.0f%% of art file bytes)\n"
2088 "art_field_bytes = %8zd (%2.0f%% of art file bytes)\n"
2089 "art_method_bytes = %8zd (%2.0f%% of art file bytes)\n"
2090 "interned_string_bytes = %8zd (%2.0f%% of art file bytes)\n"
2091 "bitmap_bytes = %8zd (%2.0f%% of art file bytes)\n"
2092 "alignment_bytes = %8zd (%2.0f%% of art file bytes)\n\n",
2110 double average = static_cast<double>(sizes_and_count.second.bytes) /
2112 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
2113 os << StringPrintf("%32s %8zd bytes %6zd instances "
2114 "(%4.0f bytes/instance) %2.0f%% of object_bytes\n",
2115 descriptor.c_str(), sizes_and_count.second.bytes,
2117 object_bytes_total += sizes_and_count.second.bytes;
2123 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2124 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2125 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
2126 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2127 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
2128 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
2144 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
2149 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
2150 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
2151 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
2171 // Number of bytes for a constructor to be considered large. Based on the 1000 basic block
2172 // threshold, we assume 2 bytes per instruction and 2 instructions per block.
2174 // Number of bytes for a method to be considered large. Based on the 4000 basic block
2175 // threshold, we assume 2 bytes per instruction and 2 instructions per block.