Searched refs:ZSTD_compressContinue (Results 1 - 4 of 4) sorted by relevance
/kernel/linux/linux-5.10/include/linux/ |
H A D | zstd.h | 975 * Then, consume your input using ZSTD_compressContinue(). 978 * - ZSTD_compressContinue() has no internal buffer. It uses externally provided 985 * ZSTD_compressContinue() doesn't guarantee recover after a failed 987 * - ZSTD_compressContinue() presumes prior input ***is still accessible and 991 * - ZSTD_compressContinue() detects that prior input has been overwritten when 1015 size_t ZSTD_compressContinue(ZSTD_CCtx *cctx, void *dst, size_t dstCapacity,
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | zstd_lib.h | 2367 Then, consume your input using ZSTD_compressContinue(). 2369 - ZSTD_compressContinue() has no internal buffer. It uses externally provided buffers only. 2373 ZSTD_compressContinue() doesn't guarantee recover after a failed compression. 2374 - ZSTD_compressContinue() presumes prior input ***is still accessible and unmodified*** (up to maximum distance size, see WindowLog). 2376 - ZSTD_compressContinue() detects that prior input has been overwritten when `src` buffer overlaps. 2392 ZSTDLIB_STATIC_API size_t ZSTD_compressContinue(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | compress.c | 346 * Only works during stage ZSTDcs_init (i.e. after creation, but before first call to ZSTD_compressContinue()). 2539 size_t ZSTD_compressContinue(ZSTD_CCtx *cctx, void *dst, size_t dstCapacity, const void *src, size_t srcSize) in ZSTD_compressContinue() function 3167 : ZSTD_compressContinue(zcs->cctx, cDst, oSize, zcs->inBuff + zcs->inToCompress, iSize); in ZSTD_compressStream_generic() 3478 EXPORT_SYMBOL(ZSTD_compressContinue); variable
|
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_compress.c | 2125 * Only works during stage ZSTDcs_init (i.e. after creation, but before first call to ZSTD_compressContinue()). 2204 * Only works during stage ZSTDcs_init (i.e. after creation, but before first call to ZSTD_compressContinue()). 4081 size_t ZSTD_compressContinue (ZSTD_CCtx* cctx, in ZSTD_compressContinue() function 4085 DEBUGLOG(5, "ZSTD_compressContinue (srcSize=%u)", (unsigned)srcSize); in ZSTD_compressContinue() 5296 ZSTD_compressContinue(zcs, cDst, oSize, in ZSTD_compressStream_generic() 5298 FORWARD_IF_ERROR(cSize, "%s", lastBlock ? "ZSTD_compressEnd failed" : "ZSTD_compressContinue failed"); in ZSTD_compressStream_generic() 5314 ZSTD_compressContinue(zcs, cDst, oSize, ip, iSize); in ZSTD_compressStream_generic() 5318 FORWARD_IF_ERROR(cSize, "%s", lastBlock ? "ZSTD_compressEnd failed" : "ZSTD_compressContinue failed"); in ZSTD_compressStream_generic()
|
Completed in 23 milliseconds