Home
last modified time | relevance | path

Searched refs:total_size (Results 1 – 10 of 10) sorted by relevance

/art/runtime/
Dmapping_table.h45 uint32_t total_size = DecodeUnsignedLeb128(&table); in DexToPcSize() local
47 return total_size - pc_to_dex_size; in DexToPcSize()
54 uint32_t total_size = DecodeUnsignedLeb128(&table); in FirstDexToPcPtr() local
57 DCHECK_GT(total_size, pc_to_dex_size); in FirstDexToPcPtr()
/art/compiler/jni/quick/mips64/
Dcalling_convention_mips64.cc193 size_t total_size = frame_data_size; in FrameSize() local
196 total_size += handle_scope_size; // Handle scope size. in FrameSize()
200 total_size += SizeOfReturnValue(); in FrameSize()
202 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.cc229 size_t total_size = frame_data_size; in FrameSize() local
232 total_size += handle_scope_size; // handle scope size in FrameSize()
236 total_size += SizeOfReturnValue(); in FrameSize()
238 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc211 size_t total_size = frame_data_size; in FrameSize() local
214 total_size += handle_scope_size; // handle scope size in FrameSize()
218 total_size += SizeOfReturnValue(); in FrameSize()
220 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/jni/quick/mips/
Dcalling_convention_mips.cc352 size_t total_size = frame_data_size; in FrameSize() local
355 total_size += handle_scope_size; // Handle scope size. in FrameSize()
359 total_size += SizeOfReturnValue(); in FrameSize()
361 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.cc283 size_t total_size = frame_data_size; in FrameSize() local
286 total_size += handle_scope_size; // handle scope size in FrameSize()
290 total_size += SizeOfReturnValue(); in FrameSize()
292 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc376 size_t total_size = frame_data_size; in FrameSize() local
379 total_size += handle_scope_size; // handle scope size in FrameSize()
383 total_size += SizeOfReturnValue(); in FrameSize()
385 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/utils/
Ddedupe_set-inl.h46 size_t total_size = 0u;
93 global_stats->total_size += keys_.Size();
248 stats.total_size,
/art/libdexfile/dex/
Dtest_dex_file_builder.h165 uint32_t total_size = data_section_offset + data_section_size; in Build() local
167 dex_file_data_.resize(total_size); in Build()
/art/oatdump/
Doatdump.cc2615 size_t total_size = dex_instruction_bytes + in DumpMethod() local
2620 stats_.ComputeOutliers(total_size, expansion, method); in DumpMethod()
2719 void ComputeOutliers(size_t total_size, double expansion, ArtMethod* method) { in ComputeOutliers()
2720 method_outlier_size.push_back(total_size); in ComputeOutliers()