Home
last modified time | relevance | path

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

/linux/lib/zstd/decompress/
H A Dzstd_decompress.c218 + dctx->inBuffSize + dctx->outBuffSize; in ZSTD_sizeof_DCtx()
251 dctx->inBuffSize = 0; in ZSTD_initDCtx_internal()
1788 size_t const inBuffSize = blockSize; /* no block can be larger */ in ZSTD_estimateDStreamSize() local
1790 return ZSTD_estimateDCtxSize() + inBuffSize + outBuffSize; in ZSTD_estimateDStreamSize()
1810 …return (zds->inBuffSize + zds->outBuffSize) >= (neededInBuffSize + neededOutBuffSize) * ZSTD_WORKS… in ZSTD_DCtx_isOverflow()
1997 …{ int const tooSmall = (zds->inBuffSize < neededInBuffSize) || (zds->outBuffSize < neededOutBuff… in ZSTD_decompressStream()
2003 (U32)zds->inBuffSize, (U32)neededInBuffSize); in ZSTD_decompressStream()
2014 zds->inBuffSize = 0; in ZSTD_decompressStream()
2019 zds->inBuffSize = neededInBuffSize; in ZSTD_decompressStream()
2020 zds->outBuff = zds->inBuff + zds->inBuffSize; in ZSTD_decompressStream()
[all …]
H A Dzstd_decompress_internal.h171 size_t inBuffSize; member
/linux/lib/zstd/compress/
H A Dzstd_compress.c1497 size_t const inBuffSize = (params->inBufferMode == ZSTD_bm_buffered) in ZSTD_estimateCStreamSize_usingCCtxParams() local
1506 &cParams, &params->ldmParams, 1, useRowMatchFinder, inBuffSize, outBuffSize, in ZSTD_estimateCStreamSize_usingCCtxParams()
1865 zc->inBuffSize = buffInSize; in ZSTD_resetCCtx_internal()
5228 assert(zcs->inBuffSize > 0); in ZSTD_compressStream_generic()
5304 if (zcs->inBuffTarget > zcs->inBuffSize) in ZSTD_compressStream_generic()
5307 (unsigned)zcs->inBuffTarget, (unsigned)zcs->inBuffSize); in ZSTD_compressStream_generic()
5309 assert(zcs->inBuffTarget <= zcs->inBuffSize); in ZSTD_compressStream_generic()
H A Dzstd_compress_internal.h394 size_t inBuffSize; member