Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/lib/zstd/
H A Ddecompress.c1721 size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx *dctx) { return dctx->expected; } in ZSTD_nextSrcSizeToDecompress() function
2353 size_t const h1Size = ZSTD_nextSrcSizeToDecompress(zds->dctx); /* == ZSTD_frameHeaderSize_prefix */ in ZSTD_decompressStream()
2356 size_t const h2Size = ZSTD_nextSrcSizeToDecompress(zds->dctx); in ZSTD_decompressStream()
2382 size_t const neededInSize = ZSTD_nextSrcSizeToDecompress(zds->dctx); in ZSTD_decompressStream()
2411 size_t const neededInSize = ZSTD_nextSrcSizeToDecompress(zds->dctx); in ZSTD_decompressStream()
2467 size_t nextSrcSizeHint = ZSTD_nextSrcSizeToDecompress(zds->dctx); in ZSTD_decompressStream()
2523 EXPORT_SYMBOL(ZSTD_nextSrcSizeToDecompress); variable
/kernel/linux/linux-5.10/include/linux/
H A Dzstd.h1052 * Then use ZSTD_nextSrcSizeToDecompress() and ZSTD_decompressContinue()
1054 * ZSTD_nextSrcSizeToDecompress() tells how many bytes to provide as 'srcSize'
1073 * A frame is fully decoded when ZSTD_nextSrcSizeToDecompress() returns zero.
1104 size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx *dctx);
/kernel/linux/linux-6.6/lib/zstd/decompress/
H A Dzstd_decompress.c1061 size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx) { return dctx->expected; } in ZSTD_nextSrcSizeToDecompress() 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); in ZSTD_decompressStream()
2112 { size_t nextSrcSizeHint = ZSTD_nextSrcSizeToDecompress(zds); in ZSTD_decompressStream()
/kernel/linux/linux-6.6/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 13 milliseconds