Home
last modified time | relevance | path

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

/freebsd/contrib/elftoolchain/libelf/
H A Dlibelf_chdr.c76 if ((sh32->sh_flags & SHF_COMPRESSED) == 0) { in _libelf_getchdr()
92 if ((sh64->sh_flags & SHF_COMPRESSED) == 0) { in _libelf_getchdr()
/freebsd/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_elf_init.c400 if ((sh.sh_flags & SHF_COMPRESSED) != 0) { in _dwarf_elf_init()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.h682 return S->OriginalFlags & ELF::SHF_COMPRESSED; in classof()
695 Flags = OriginalFlags = (Flags & ~ELF::SHF_COMPRESSED); in DecompressedSection()
H A DELFObjcopy.cpp102 (ELF::SHF_COMPRESSED | ELF::SHF_GROUP | ELF::SHF_LINK_ORDER | in getSectionFlagsPreserveMask()
H A DELFObject.cpp568 Flags |= ELF::SHF_COMPRESSED; in CompressedSection()
569 OriginalFlags |= ELF::SHF_COMPRESSED; in CompressedSection()
1778 if (!(Shdr.sh_flags & ELF::SHF_COMPRESSED)) in makeSection()
/freebsd/contrib/llvm-project/lld/ELF/
H A DInputSection.cpp75 if (flags & SHF_COMPRESSED) in InputSectionBase()
245 flags &= ~(uint64_t)SHF_COMPRESSED; in parseCompressedHeader()
H A DOutputSections.cpp463 flags |= SHF_COMPRESSED; in maybeCompress()
H A DScriptParser.cpp1359 .Case(CASE_ENT(SHF_COMPRESSED)) in parseFlag()
/freebsd/sys/sys/
H A Delf_common.h530 #define SHF_COMPRESSED 0x800 /* Section contains compressed data. */ macro
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DELF.h1193 SHF_COMPRESSED = 0x800U, enumerator
/freebsd/contrib/llvm-project/llvm/lib/DWP/
H A DDWP.cpp339 !(static_cast<ELFSectionRef>(Sec).getFlags() & ELF::SHF_COMPRESSED)) in handleCompressedSection()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp773 Section.setFlags(Section.getFlags() | ELF::SHF_COMPRESSED); in writeSectionData()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp3612 if (!section->Test(SHF_COMPRESSED)) in ReadSectionData()
3629 if (result == 0 || !(section->Get() & llvm::ELF::SHF_COMPRESSED)) in ReadSectionData()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFObjectFile.h941 return getSection(Sec)->sh_flags & ELF::SHF_COMPRESSED; in isSectionCompressed()
/freebsd/contrib/elftoolchain/common/
H A Delfdefinitions.h1039 _ELF_DEFINE_SHF(SHF_COMPRESSED, 0x800, \
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFYAML.cpp775 BCase(SHF_COMPRESSED); in bitset()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp1323 ENUM_ENT(SHF_COMPRESSED, "C"),
4584 {SHF_COMPRESSED, "COMPRESSED"}, {SHF_EXCLUDE, "EXCLUDE"}}; in printSectionDetails()
4618 if (!(S.sh_flags & SHF_COMPRESSED)) in printSectionDetails()
/freebsd/contrib/elftoolchain/readelf/
H A Dreadelf.c1138 {"COMPRESSED", 'C', SHF_COMPRESSED},
7026 if (sh.sh_flags & SHF_COMPRESSED) { in decompress_section()