Searched refs:ZSTD_nextSrcSizeToDecompress (Results 1 - 2 of 2) sorted by relevance

/linux-master/lib/zstd/decompress/
H A Dzstd_decompress.c1061 size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx) { return dctx->expected; } function
1064 * Similar to ZSTD_nextSrcSizeToDecompress(), but when a block input can be streamed,
1109 * srcSize : must be the exact nb of bytes expected (see ZSTD_nextSrcSizeToDecompress())
2046 { size_t const neededInSize = ZSTD_nextSrcSizeToDecompress(zds);
2112 { size_t nextSrcSizeHint = ZSTD_nextSrcSizeToDecompress(zds);
/linux-master/include/linux/
H A Dzstd_lib.h2447 Then use ZSTD_nextSrcSizeToDecompress() and ZSTD_decompressContinue() alternatively.
2448 ZSTD_nextSrcSizeToDecompress() tells how many bytes to provide as 'srcSize' to ZSTD_decompressContinue().
2455 A frame is fully decoded when ZSTD_nextSrcSizeToDecompress() returns zero.
2501 ZSTDLIB_STATIC_API size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx);

Completed in 116 milliseconds