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

/openbsd-current/gnu/llvm/llvm/lib/Object/
H A DDecompressor.cpp39 auto ChType = Extractor.getUnsigned(&Offset, Is64Bit ? sizeof(Elf64_Word) local
41 switch (ChType) {
49 return createError("unsupported compression type (" + Twine(ChType) + ")");
/openbsd-current/gnu/llvm/llvm/lib/MC/
H A DELFObjectWriter.cpp147 bool maybeWriteCompression(uint32_t ChType, uint64_t Size,
842 uint32_t ChType, uint64_t Size,
851 write(static_cast<ELF::Elf64_Word>(ChType));
857 write(static_cast<ELF::Elf32_Word>(ChType));
887 uint32_t ChType; local
892 ChType = ELF::ELFCOMPRESS_ZLIB;
895 ChType = ELF::ELFCOMPRESS_ZSTD;
900 if (!maybeWriteCompression(ChType, UncompressedData.size(), Compressed,
841 maybeWriteCompression( uint32_t ChType, uint64_t Size, SmallVectorImpl<uint8_t> &CompressedContents, Align Alignment) argument
/openbsd-current/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObject.h539 uint32_t ChType = 0; member in class:llvm::objcopy::elf::CompressedSection
548 CompressedSection(ArrayRef<uint8_t> CompressedData, uint32_t ChType,
553 uint64_t getChType() const { return ChType; }
567 uint32_t ChType; member in class:llvm::objcopy::elf::DecompressedSection
569 : SectionBase(Sec), ChType(Sec.getChType()) {
H A DELFObject.cpp443 switch (Sec.ChType) {
453 Twine(Sec.ChType) + ") of section '" +
550 uint32_t ChType, uint64_t DecompressedSize,
552 : ChType(ChType), CompressionType(DebugCompressionType::None),
549 CompressedSection(ArrayRef<uint8_t> CompressedData, uint32_t ChType, uint64_t DecompressedSize, uint64_t DecompressedAlign) argument

Completed in 210 milliseconds