Home
last modified time | relevance | path

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

/system/core/fs_mgr/libsnapshot/libsnapshot_cow/
Dcow_compress.cpp186 zstd_context_(ZSTD_createCCtx(), ZSTD_freeCCtx) { in ZstdCompressor()
187 ZSTD_CCtx_setParameter(zstd_context_.get(), ZSTD_c_compressionLevel, compression_level); in ZstdCompressor()
188 ZSTD_CCtx_setParameter(zstd_context_.get(), ZSTD_c_windowLog, log2(GetBlockSize())); in ZstdCompressor()
194 ZSTD_compress2(zstd_context_.get(), buffer.data(), buffer.size(), data, length); in Compress()
210 std::unique_ptr<ZSTD_CCtx, decltype(&ZSTD_freeCCtx)> zstd_context_; member in android::snapshot::ZstdCompressor