Searched refs:DecompressedSize (Results 1 – 4 of 4) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| H A D | Decompressor.h | 33 Out.resize(DecompressedSize); in resizeAndDecompress() 34 return decompress({Out.data(), (size_t)DecompressedSize}); in resizeAndDecompress() 42 uint64_t getDecompressedSize() { return DecompressedSize; } in getDecompressedSize() 60 uint64_t DecompressedSize; variable
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
| H A D | Decompressor.cpp | 34 : SectionData(Data), DecompressedSize(0) {} in Decompressor() 45 DecompressedSize = read64be(SectionData.data()); in consumeCompressedGnuHeader() 69 DecompressedSize = Extractor.getUnsigned( in consumeCompressedZLibHeader()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/ |
| H A D | Object.cpp | 450 const uint64_t DecompressedSize = in getDecompressedSizeAndAlignment() local 459 return std::make_tuple(DecompressedSize, DecompressedAlign); in getDecompressedSizeAndAlignment() 533 const uint64_t DecompressedSize = in visit() local 534 support::endian::read64be(&Sec.DecompressedSize); in visit() 535 memcpy(Buf, &DecompressedSize, sizeof(DecompressedSize)); in visit() 536 Buf += sizeof(DecompressedSize); in visit() 540 Chdr.ch_size = Sec.DecompressedSize; in visit() 563 uint64_t DecompressedSize, in create() argument 565 return CompressedSection(CompressedData, DecompressedSize, DecompressedAlign); in create() 572 DecompressedSize(Sec.OriginalData.size()), DecompressedAlign(Sec.Align) { in CompressedSection() [all …]
|
| H A D | Object.h | 530 uint64_t DecompressedSize; variable 538 uint64_t DecompressedSize, 541 uint64_t getDecompressedSize() const { return DecompressedSize; } in getDecompressedSize() 555 CompressedSection(ArrayRef<uint8_t> CompressedData, uint64_t DecompressedSize,
|