Searched refs:stableIn_notConsumed (Results 1 – 2 of 2) sorted by relevance
6092 return cctx->blockSizeMax - cctx->stableIn_notConsumed; in ZSTD_nextInputSizeHint()6121 assert(input->pos >= zcs->stableIn_notConsumed); in ZSTD_compressStream_generic()6122 input->pos -= zcs->stableIn_notConsumed; in ZSTD_compressStream_generic()6123 if (ip) ip -= zcs->stableIn_notConsumed; in ZSTD_compressStream_generic()6124 zcs->stableIn_notConsumed = 0; in ZSTD_compressStream_generic()6186 zcs->stableIn_notConsumed = (size_t)(iend - ip); in ZSTD_compressStream_generic()6463 size_t const totalInputSize = inputSize + cctx->stableIn_notConsumed; in ZSTD_compressStream2()6467 if (cctx->stableIn_notConsumed) { /* not the first time */ in ZSTD_compressStream2()6477 cctx->stableIn_notConsumed += inputSize; in ZSTD_compressStream2()6495 if (cctx->stableIn_notConsumed) { in ZSTD_compressStream2()[all …]
523 …size_t stableIn_notConsumed; /* nb bytes within stable input buffer that are said to be consumed b… member