Searched refs:inBuffSize (Results 1 – 4 of 4) sorted by relevance
219 + 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() local1724 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 …]
153 size_t inBuffSize; member
1352 size_t const inBuffSize = (params->inBufferMode == ZSTD_bm_buffered) in ZSTD_estimateCStreamSize_usingCCtxParams() local1360 &cParams, ¶ms->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()
304 size_t inBuffSize; member
Completed in 25 milliseconds