Home
last modified time | relevance | path

Searched refs:CompressedSize (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCompression.cpp109 unsigned long CompressedSize = ::compressBound(Input.size()); in compress() local
110 CompressedBuffer.resize_for_overwrite(CompressedSize); in compress()
111 int Res = ::compress2((Bytef *)CompressedBuffer.data(), &CompressedSize, in compress()
118 __msan_unpoison(CompressedBuffer.data(), CompressedSize); in compress()
119 if (CompressedSize < CompressedBuffer.size()) in compress()
120 CompressedBuffer.truncate(CompressedSize); in compress()
190 size_t const CompressedSize = in compress() local
196 if (ZSTD_isError(CompressedSize)) in compress()
199 __msan_unpoison(CompressedBuffer.data(), CompressedSize); in compress()
200 if (CompressedSize < CompressedBuffer.size()) in compress()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DDeviceOffload.cpp124 uint32_t CompressedSize; // 0x10 in GenerateFatbinary() member
141 DataSize(DataSize), unknown0c(0), CompressedSize(0), in GenerateFatbinary()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp532 uint64_t CompressedSize = decodeULEB128(P, &N); in readAndDecodeStrings() local
534 const bool IsCompressed = (CompressedSize != 0); in readAndDecodeStrings()
541 if (Error E = compression::zlib::decompress(ArrayRef(P, CompressedSize), in readAndDecodeStrings()
547 P += CompressedSize; in readAndDecodeStrings()