Home
last modified time | relevance | path

Searched refs:section_index (Results 1 – 2 of 2) sorted by relevance

/art/dexlayout/
Ddex_visualize.cc306 size_t section_index) { in FindNextByteAfterSection() argument
307 for (size_t i = section_index + 1; i < sorted_sections.size(); ++i) { in FindNextByteAfterSection()
/art/libprofile/profile/
Dprofile_compilation_info.cc986 size_t section_index = 0u; in Save() local
989 DCHECK_LT(section_index, section_infos.size()); in Save()
990 section_infos[section_index] = FileSectionInfo(type, file_offset, file_size, inflated_size); in Save()
992 section_index += 1u; in Save()
1072 SafeBuffer section_infos_buffer(section_index * 4u * sizeof(uint32_t)); in Save()
1073 for (size_t i = 0; i != section_index; ++i) { in Save()
1086 FileHeader header(version_, section_index); in Save()