Home
last modified time | relevance | path

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

/linux/lib/zstd/decompress/
A Dzstd_decompress.c219 + dctx->inBuffSize + dctx->outBuffSize; in ZSTD_sizeof_DCtx()
252 dctx->inBuffSize = 0; in ZSTD_initDCtx_internal()
1722 size_t const inBuffSize = blockSize; /* no block can be larger */ in ZSTD_estimateDStreamSize() local
1724 return ZSTD_estimateDCtxSize() + inBuffSize + outBuffSize; in ZSTD_estimateDStreamSize()
1744 …return (zds->inBuffSize + zds->outBuffSize) >= (neededInBuffSize + neededOutBuffSize) * ZSTD_WORKS… in ZSTD_DCtx_isOverflow()
1932 …{ int const tooSmall = (zds->inBuffSize < neededInBuffSize) || (zds->outBuffSize < neededOutBuff… in ZSTD_decompressStream()
1938 (U32)zds->inBuffSize, (U32)neededInBuffSize); in ZSTD_decompressStream()
1949 zds->inBuffSize = 0; in ZSTD_decompressStream()
1954 zds->inBuffSize = neededInBuffSize; in ZSTD_decompressStream()
1955 zds->outBuff = zds->inBuff + zds->inBuffSize; in ZSTD_decompressStream()
[all …]
A Dzstd_decompress_internal.h153 size_t inBuffSize; member
/linux/lib/zstd/compress/
A Dzstd_compress.c1352 size_t const inBuffSize = (params->inBufferMode == ZSTD_bm_buffered) in ZSTD_estimateCStreamSize_usingCCtxParams() local
1360 &cParams, &params->ldmParams, 1, inBuffSize, outBuffSize, in ZSTD_estimateCStreamSize_usingCCtxParams()
1664 zc->inBuffSize = buffInSize; in ZSTD_resetCCtx_internal()
4110 assert(zcs->inBuffSize > 0); in ZSTD_compressStream_generic()
4186 if (zcs->inBuffTarget > zcs->inBuffSize) in ZSTD_compressStream_generic()
4189 (unsigned)zcs->inBuffTarget, (unsigned)zcs->inBuffSize); in ZSTD_compressStream_generic()
4191 assert(zcs->inBuffTarget <= zcs->inBuffSize); in ZSTD_compressStream_generic()
A Dzstd_compress_internal.h304 size_t inBuffSize; member

Completed in 25 milliseconds