Home
last modified time | relevance | path

Searched refs:total_size (Results 1 – 11 of 11) 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.cc192 size_t total_size = frame_data_size; in FrameSize() local
195 total_size += handle_scope_size; // Handle scope size. in FrameSize()
199 total_size += SizeOfReturnValue(); in FrameSize()
201 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.cc228 size_t total_size = frame_data_size; in FrameSize() local
231 total_size += handle_scope_size; // handle scope size in FrameSize()
235 total_size += SizeOfReturnValue(); in FrameSize()
237 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc210 size_t total_size = frame_data_size; in FrameSize() local
213 total_size += handle_scope_size; // handle scope size in FrameSize()
217 total_size += SizeOfReturnValue(); in FrameSize()
219 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/jni/quick/mips/
Dcalling_convention_mips.cc351 size_t total_size = frame_data_size; in FrameSize() local
354 total_size += handle_scope_size; // Handle scope size. in FrameSize()
358 total_size += SizeOfReturnValue(); in FrameSize()
360 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.cc259 size_t total_size = frame_data_size; in FrameSize() local
262 total_size += handle_scope_size; // handle scope size in FrameSize()
266 total_size += SizeOfReturnValue(); in FrameSize()
268 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc400 size_t total_size = frame_data_size; in FrameSize() local
403 total_size += handle_scope_size; // handle scope size in FrameSize()
407 total_size += SizeOfReturnValue(); in FrameSize()
409 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/utils/
Ddedupe_set-inl.h45 size_t total_size = 0u;
92 global_stats->total_size += keys_.Size();
247 stats.total_size,
Dtest_dex_file_builder.h163 uint32_t total_size = data_section_offset + data_section_size; in Build() local
165 dex_file_data_.resize(total_size); in Build()
/art/runtime/jit/
Djit_code_cache.cc547 size_t total_size = header_size + code_size; in CommitCodeInternal() local
558 memory = AllocateCode(total_size); in CommitCodeInternal()
/art/oatdump/
Doatdump.cc2354 size_t total_size = dex_instruction_bytes + in DumpMethod() local
2359 stats_.ComputeOutliers(total_size, expansion, method); in DumpMethod()
2458 void ComputeOutliers(size_t total_size, double expansion, ArtMethod* method) { in ComputeOutliers()
2459 method_outlier_size.push_back(total_size); in ComputeOutliers()