Home
last modified time | relevance | path

Searched refs:sectionHeader (Results 1 – 3 of 3) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DOatFile.java477 SectionHeader sectionHeader;
479 sectionHeader = getSections().get(getSectionIndex());
484 long sectionAddress = sectionHeader.getAddress();
485 int sectionOffset = sectionHeader.getOffset();
486 int sectionSize = sectionHeader.getSize();
/external/libunwind_llvm/src/
DUnwindCursor.hpp1531 const UnwindSectionHeader<A> sectionHeader(_addressSpace, in getInfoFromCompactEncodingSection() local
1533 if (sectionHeader.version() != UNWIND_SECTION_VERSION) in getInfoFromCompactEncodingSection()
1540 + sectionHeader.indexSectionOffset()); in getInfoFromCompactEncodingSection()
1542 uint32_t high = sectionHeader.indexCount(); in getInfoFromCompactEncodingSection()
1684 if (encodingIndex < sectionHeader.commonEncodingsArrayCount()) { in getInfoFromCompactEncodingSection()
1688 sectionHeader.commonEncodingsArraySectionOffset() + in getInfoFromCompactEncodingSection()
1693 encodingIndex - (uint16_t)sectionHeader.commonEncodingsArrayCount(); in getInfoFromCompactEncodingSection()
1741 if (personalityIndex > sectionHeader.personalityArrayCount()) { in getInfoFromCompactEncodingSection()
1745 sectionHeader.personalityArrayCount()); in getInfoFromCompactEncodingSection()
1750 sectionHeader.personalityArraySectionOffset() + in getInfoFromCompactEncodingSection()
/external/swiftshader/src/Reactor/
DSubzeroReactor.cpp206 inline const SectionHeader *sectionHeader(const ElfHeader *elfHeader) in sectionHeader() function
213 return &sectionHeader(elfHeader)[index]; in elfSection()
387 SectionHeader *sectionHeader = (SectionHeader*)(elfImage + elfHeader->e_shoff); in loadImage() local
392 if(sectionHeader[i].sh_type == SHT_PROGBITS) in loadImage()
394 if(sectionHeader[i].sh_flags & SHF_EXECINSTR) in loadImage()
396 entry = elfImage + sectionHeader[i].sh_offset; in loadImage()
397 codeSize = sectionHeader[i].sh_size; in loadImage()
400 else if(sectionHeader[i].sh_type == SHT_REL) in loadImage()
404 … for(Elf32_Word index = 0; index < sectionHeader[i].sh_size / sectionHeader[i].sh_entsize; index++) in loadImage()
406 … const Elf32_Rel &relocation = ((const Elf32_Rel*)(elfImage + sectionHeader[i].sh_offset))[index]; in loadImage()
[all …]