Searched refs:old_sh (Results 1 - 1 of 1) sorted by relevance

/art/compiler/
H A Delf_stripper.cc96 llvm::ELF::Elf32_Shdr& old_sh = elf_file->GetSectionHeader(section_headers_original_indexes[i]); local
97 CHECK_EQ(new_sh.sh_name, old_sh.sh_name);
98 if (old_sh.sh_addralign > 1) {
99 offset = RoundUp(offset, old_sh.sh_addralign);
101 if (old_sh.sh_offset == offset) {
103 offset += old_sh.sh_size;
108 elf_file->Begin() + old_sh.sh_offset,
109 old_sh.sh_size);
111 offset += old_sh.sh_size;

Completed in 40 milliseconds