Searched refs:CompressedBuffer (Results 1 – 3 of 3) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | Compression.cpp | 108 SmallVectorImpl<uint8_t> &CompressedBuffer, int Level) { in compress() argument 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() 148 SmallVectorImpl<uint8_t> &CompressedBuffer, int Level) { in compress() argument 167 SmallVectorImpl<uint8_t> &CompressedBuffer, int Level) { in compress() argument 169 CompressedBuffer.resize_for_overwrite(CompressedBufferSize); in compress() 171 ::ZSTD_compress((char *)CompressedBuffer.data(), CompressedBufferSize, in compress() [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | Compression.h | 44 SmallVectorImpl<uint8_t> &CompressedBuffer, 65 SmallVectorImpl<uint8_t> &CompressedBuffer,
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A D | ASTWriter.cpp | 2004 SmallVector<uint8_t, 0> CompressedBuffer; in emitBlob() local 2007 llvm::arrayRefFromStringRef(Blob.drop_back(1)), CompressedBuffer, 9); in emitBlob() 2010 llvm::toStringRef(CompressedBuffer)); in emitBlob() 2015 llvm::arrayRefFromStringRef(Blob.drop_back(1)), CompressedBuffer); in emitBlob() 2018 llvm::toStringRef(CompressedBuffer)); in emitBlob()
|