Lines Matching refs:nextToUpdate
59 U32 nextToUpdate; /* index from which to continue dictionary update */ member
224 cctx->nextToUpdate = end + 1; in ZSTD_continueCCtx()
291 zc->nextToUpdate = 1; in ZSTD_resetCCtx_advanced()
370 dstCCtx->nextToUpdate = srcCCtx->nextToUpdate; in ZSTD_copyCCtx()
997 const BYTE *ip = base + zc->nextToUpdate; in ZSTD_fillHashTable()
1242 const BYTE *ip = base + cctx->nextToUpdate; in ZSTD_fillDoubleHashTable()
1720 zc->nextToUpdate = (matchEndIdx > curr + 8) ? matchEndIdx - 8 : curr + 1; in ZSTD_insertBtAndFindBestMatch()
1728 U32 idx = zc->nextToUpdate; in ZSTD_updateTree()
1737 if (ip < zc->base + zc->nextToUpdate) in ZSTD_BtFindBestMatch()
1759 U32 idx = zc->nextToUpdate; in ZSTD_updateTree_extDict()
1769 if (ip < zc->base + zc->nextToUpdate) in ZSTD_BtFindBestMatch_extDict()
1804 U32 idx = zc->nextToUpdate; in ZSTD_insertAndFindFirstIndex()
1813 zc->nextToUpdate = target; in ZSTD_insertAndFindFirstIndex()
1916 ctx->nextToUpdate3 = ctx->nextToUpdate; in ZSTD_compressBlock_lazy_generic()
2083 ctx->nextToUpdate3 = ctx->nextToUpdate; in ZSTD_compressBlock_lazy_extDict_generic()
2342 if (curr > zc->nextToUpdate + 384) in ZSTD_compressBlock_internal()
2343 …zc->nextToUpdate = curr - MIN(192, (U32)(curr - zc->nextToUpdate - 384)); /* update tree not updat… in ZSTD_compressBlock_internal()
2388 if (cctx->nextToUpdate < correction) in ZSTD_compress_generic()
2389 cctx->nextToUpdate = 0; in ZSTD_compress_generic()
2391 cctx->nextToUpdate -= correction; in ZSTD_compress_generic()
2515 cctx->nextToUpdate = cctx->dictLimit; in ZSTD_compressContinue_internal()
2567 zc->nextToUpdate = zc->dictLimit; in ZSTD_loadDictionaryContent()
2597 zc->nextToUpdate = (U32)(iend - zc->base); in ZSTD_loadDictionaryContent()