Lines Matching refs:lowLimit

58 	U32 lowLimit;	 /* below that point, no more data */  member
222 cctx->lowLimit = end; in ZSTD_continueCCtx()
296 zc->lowLimit = 0; in ZSTD_resetCCtx_advanced()
376 dstCCtx->lowLimit = srcCCtx->lowLimit; in ZSTD_copyCCtx()
1126 const U32 lowestIndex = ctx->lowLimit; in ZSTD_compressBlock_fast_extDict_generic()
1407 const U32 lowestIndex = ctx->lowLimit; in ZSTD_compressBlock_doubleFast_extDict_generic()
1582 U32 const windowLow = zc->lowLimit; in ZSTD_insertBt1()
1661 const U32 windowLow = zc->lowLimit; in ZSTD_insertBtAndFindBestMatch()
1831 const U32 lowLimit = zc->lowLimit; in ZSTD_HcFindBestMatch_generic() local
1840 for (; (matchIndex > lowLimit) & (nbAttempts > 0); nbAttempts--) { in ZSTD_HcFindBestMatch_generic()
2068 const U32 lowestIndex = ctx->lowLimit; in ZSTD_compressBlock_lazy_extDict_generic()
2072 const BYTE *const dictStart = dictBase + ctx->lowLimit; in ZSTD_compressBlock_lazy_extDict_generic()
2335 …Compressor = ZSTD_selectBlockCompressor(zc->params.cParams.strategy, zc->lowLimit < zc->dictLimit); in ZSTD_compressBlock_internal()
2377 if (cctx->lowLimit > (3U << 29)) { in ZSTD_compress_generic()
2386 cctx->lowLimit -= correction; in ZSTD_compress_generic()
2397 if (cctx->lowLimit < newLowLimit) in ZSTD_compress_generic()
2398 cctx->lowLimit = newLowLimit; in ZSTD_compress_generic()
2399 if (cctx->dictLimit < cctx->lowLimit) in ZSTD_compress_generic()
2400 cctx->dictLimit = cctx->lowLimit; in ZSTD_compress_generic()
2511 cctx->lowLimit = cctx->dictLimit; in ZSTD_compressContinue_internal()
2516 if (cctx->dictLimit - cctx->lowLimit < HASH_READ_SIZE) in ZSTD_compressContinue_internal()
2517 cctx->lowLimit = cctx->dictLimit; /* too small extDict */ in ZSTD_compressContinue_internal()
2521 if ((ip + srcSize > cctx->dictBase + cctx->lowLimit) & (ip < cctx->dictBase + cctx->dictLimit)) { in ZSTD_compressContinue_internal()
2524 cctx->lowLimit = lowLimitMax; in ZSTD_compressContinue_internal()
2563 zc->lowLimit = zc->dictLimit; in ZSTD_loadDictionaryContent()