Home
last modified time | relevance | path

Searched refs:ZSTD_compressEnd (Results 1 - 4 of 4) sorted by relevance

/kernel/linux/linux-5.10/include/linux/
H A Dzstd.h995 * Finish a frame with ZSTD_compressEnd(), which will write the last block(s)
1017 size_t ZSTD_compressEnd(ZSTD_CCtx *cctx, void *dst, size_t dstCapacity,
/kernel/linux/linux-5.10/lib/zstd/
H A Dcompress.c2806 size_t ZSTD_compressEnd(ZSTD_CCtx *cctx, void *dst, size_t dstCapacity, const void *src, size_t srcSize) in ZSTD_compressEnd() function
2822 return ZSTD_compressEnd(cctx, dst, dstCapacity, src, srcSize); in ZSTD_compress_internal()
2941 return ZSTD_compressEnd(cctx, dst, dstCapacity, src, srcSize); in ZSTD_compress_usingCDict()
3166 cSize = (flush == zsf_end) ? ZSTD_compressEnd(zcs->cctx, cDst, oSize, zcs->inBuff + zcs->inToCompress, iSize) in ZSTD_compressStream_generic()
3274 zcs->outBuffContentSize = !notEnded ? 0 : ZSTD_compressEnd(zcs->cctx, zcs->outBuff, zcs->outBuffSize, NULL, in ZSTD_endStream()
3479 EXPORT_SYMBOL(ZSTD_compressEnd); variable
/kernel/linux/linux-6.6/include/linux/
H A Dzstd_lib.h2379 Finish a frame with ZSTD_compressEnd(), which will write the last block(s) and optional checksum.
2393 ZSTDLIB_STATIC_API size_t ZSTD_compressEnd(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
/kernel/linux/linux-6.6/lib/zstd/compress/
H A Dzstd_compress.c4540 size_t ZSTD_compressEnd (ZSTD_CCtx* cctx, in ZSTD_compressEnd() function
4594 return ZSTD_compressEnd(cctx, dst, dstCapacity, src, srcSize); in ZSTD_compress_advanced_internal()
5003 return ZSTD_compressEnd(cctx, dst, dstCapacity, src, srcSize); in ZSTD_compress_usingCDict_internal()
5248 size_t const cSize = ZSTD_compressEnd(zcs, in ZSTD_compressStream_generic()
5250 DEBUGLOG(4, "ZSTD_compressEnd : cSize=%u", (unsigned)cSize); in ZSTD_compressStream_generic()
5251 FORWARD_IF_ERROR(cSize, "ZSTD_compressEnd failed"); in ZSTD_compressStream_generic()
5294 ZSTD_compressEnd(zcs, cDst, oSize, in ZSTD_compressStream_generic()
5298 FORWARD_IF_ERROR(cSize, "%s", lastBlock ? "ZSTD_compressEnd failed" : "ZSTD_compressContinue failed"); in ZSTD_compressStream_generic()
5313 ZSTD_compressEnd(zcs, cDst, oSize, ip, iSize) : in ZSTD_compressStream_generic()
5318 FORWARD_IF_ERROR(cSize, "%s", lastBlock ? "ZSTD_compressEnd faile in ZSTD_compressStream_generic()
[all...]

Completed in 22 milliseconds