Home
last modified time | relevance | path

Searched refs:inBuffTarget (Results 1 – 2 of 2) sorted by relevance

/external/zstd/lib/compress/
Dzstd_compress.c4116 size_t hintInSize = cctx->inBuffTarget - cctx->inBuffPos; in ZSTD_nextInputSizeHint()
4176 size_t const toLoad = zcs->inBuffTarget - zcs->inBuffPos; in ZSTD_compressStream_generic()
4184 && (zcs->inBuffPos < zcs->inBuffTarget) ) { in ZSTD_compressStream_generic()
4217 zcs->inBuffTarget = zcs->inBuffPos + zcs->blockSize; in ZSTD_compressStream_generic()
4218 if (zcs->inBuffTarget > zcs->inBuffSize) in ZSTD_compressStream_generic()
4219 zcs->inBuffPos = 0, zcs->inBuffTarget = zcs->blockSize; in ZSTD_compressStream_generic()
4221 (unsigned)zcs->inBuffTarget, (unsigned)zcs->inBuffSize); in ZSTD_compressStream_generic()
4223 assert(zcs->inBuffTarget <= zcs->inBuffSize); in ZSTD_compressStream_generic()
4410 cctx->inBuffTarget = cctx->blockSize + (cctx->blockSize == pledgedSrcSize); in ZSTD_CCtx_init_compressStream2()
4412 cctx->inBuffTarget = 0; in ZSTD_CCtx_init_compressStream2()
Dzstd_compress_internal.h303 size_t inBuffTarget; member