Searched refs:UncompressedSize (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | Compression.cpp | 59 uint8_t *Output, size_t UncompressedSize) { in decompress() argument 62 return zlib::decompress(Input, Output, UncompressedSize); in decompress() 64 return zstd::decompress(Input, Output, UncompressedSize); in decompress() 71 size_t UncompressedSize) { in decompress() argument 74 return zlib::decompress(Input, Output, UncompressedSize); in decompress() 76 return zstd::decompress(Input, Output, UncompressedSize); in decompress() 83 size_t UncompressedSize) { in decompress() argument 84 return decompress(formatFor(T), Input, Output, UncompressedSize); in decompress() 124 size_t &UncompressedSize) { in decompress() argument 125 int Res = ::uncompress((Bytef *)Output, (uLongf *)&UncompressedSize, in decompress() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Compression.h | 48 size_t &UncompressedSize); 51 size_t UncompressedSize); 69 size_t &UncompressedSize); 72 size_t UncompressedSize); 121 uint8_t *Output, size_t UncompressedSize); 123 SmallVectorImpl<uint8_t> &Output, size_t UncompressedSize); 125 SmallVectorImpl<uint8_t> &Output, size_t UncompressedSize);
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ |
H A D | OffloadBundler.cpp | 1016 uint32_t UncompressedSize = Input.getBuffer().size(); in compress() local 1019 sizeof(UncompressedSize) + sizeof(TruncatedHash) + in compress() 1030 OS.write(reinterpret_cast<const char *>(&UncompressedSize), in compress() 1031 sizeof(UncompressedSize)); in compress() 1041 static_cast<double>(UncompressedSize) / CompressedBuffer.size(); in compress() 1044 (UncompressedSize / (1024.0 * 1024.0)) / CompressionTimeSeconds; in compress() 1052 << formatWithCommas(UncompressedSize) << " bytes\n" in compress() 1103 uint32_t UncompressedSize; in decompress() local 1104 memcpy(&UncompressedSize, Blob.data() + CurrentOffset, sizeof(uint32_t)); in decompress() 1131 DecompressedData, UncompressedSize)) in decompress() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Interpreter/ |
H A D | DeviceOffload.cpp | 135 uint32_t UncompressedSize; // 0x38 in GenerateFatbinary() member 144 unknown2c(0), unknown30(0), unknown34(0), UncompressedSize(0), in GenerateFatbinary()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | InstrProf.cpp | 530 uint64_t UncompressedSize = decodeULEB128(P, &N); in readAndDecodeStrings() local 543 UncompressedSize)) { in readAndDecodeStrings() 551 StringRef(reinterpret_cast<const char *>(P), UncompressedSize); in readAndDecodeStrings() 552 P += UncompressedSize; in readAndDecodeStrings()
|