Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DDecompressor.h35 Out.resize(DecompressedSize); in resizeAndDecompress()
36 return decompress({(uint8_t *)Out.data(), (size_t)DecompressedSize}); in resizeAndDecompress()
43 uint64_t getDecompressedSize() { return DecompressedSize; } in getDecompressedSize()
51 uint64_t DecompressedSize; variable
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DDecompressor.cpp30 : SectionData(Data), DecompressedSize(0) {} in Decompressor()
60 DecompressedSize = Extractor.getUnsigned( in consumeCompressedHeader()
H A DELF.cpp797 size_t DecompressedSize = DecompressorOrErr->getDecompressedSize(); in decodeBBAddrMapImpl() local
798 DecompressedContent = std::make_unique<uint8_t[]>(DecompressedSize); in decodeBBAddrMapImpl()
800 DecompressedSize); in decodeBBAddrMapImpl()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.h668 uint64_t DecompressedSize; variable
676 uint64_t DecompressedSize, uint64_t DecompressedAlign);
678 uint64_t getDecompressedSize() const { return DecompressedSize; } in getDecompressedSize()
H A DELFObject.cpp548 Chdr.ch_size = Sec.DecompressedSize; in visit()
561 DecompressedSize(Sec.OriginalData.size()), DecompressedAlign(Sec.Align) { in CompressedSection()
574 uint32_t ChType, uint64_t DecompressedSize, in CompressedSection() argument
577 DecompressedSize(DecompressedSize), DecompressedAlign(DecompressedAlign) { in CompressedSection()