Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DELFObjectFile.h725 const Elf_Shdr *EShdr = getSection(Sec); in getSectionContents() local
726 if (EShdr->sh_type == ELF::SHT_NOBITS) in getSectionContents()
730 (uintptr_t)base() + EShdr->sh_offset, EShdr->sh_size)) in getSectionContents()
732 return makeArrayRef((const uint8_t *)base() + EShdr->sh_offset, in getSectionContents()
733 EShdr->sh_size); in getSectionContents()
753 const Elf_Shdr *EShdr = getSection(Sec); in isSectionData() local
754 return EShdr->sh_type == ELF::SHT_PROGBITS && in isSectionData()
755 EShdr->sh_flags & ELF::SHF_ALLOC && in isSectionData()
756 !(EShdr->sh_flags & ELF::SHF_EXECINSTR); in isSectionData()
761 const Elf_Shdr *EShdr = getSection(Sec); in isSectionBSS() local
[all …]