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

/freebsd-current/contrib/llvm-project/llvm/lib/Object/
H A DDecompressor.cpp40 auto ChType = Extractor.getUnsigned(&Offset, Is64Bit ? sizeof(Elf64_Word) local
42 switch (ChType) {
50 return createError("unsupported compression type (" + Twine(ChType) + ")");
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp148 bool maybeWriteCompression(uint32_t ChType, uint64_t Size,
852 uint32_t ChType, uint64_t Size,
861 write(static_cast<ELF::Elf64_Word>(ChType));
867 write(static_cast<ELF::Elf32_Word>(ChType));
897 uint32_t ChType; local
902 ChType = ELF::ELFCOMPRESS_ZLIB;
905 ChType = ELF::ELFCOMPRESS_ZSTD;
910 if (!maybeWriteCompression(ChType, UncompressedData.size(), Compressed,
851 maybeWriteCompression( uint32_t ChType, uint64_t Size, SmallVectorImpl<uint8_t> &CompressedContents, Align Alignment) argument
/freebsd-current/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.h546 uint32_t ChType = 0; member in class:llvm::objcopy::elf::CompressedSection
555 CompressedSection(ArrayRef<uint8_t> CompressedData, uint32_t ChType,
560 uint64_t getChType() const { return ChType; }
574 uint32_t ChType; member in class:llvm::objcopy::elf::DecompressedSection
576 : SectionBase(Sec), ChType(Sec.getChType()) {
H A DELFObject.cpp450 switch (Sec.ChType) {
460 Twine(Sec.ChType) + ") of section '" +
557 uint32_t ChType, uint64_t DecompressedSize,
559 : ChType(ChType), CompressionType(DebugCompressionType::None),
556 CompressedSection(ArrayRef<uint8_t> CompressedData, uint32_t ChType, uint64_t DecompressedSize, uint64_t DecompressedAlign) argument

Completed in 140 milliseconds