Searched refs:nextToUpdate (Results 1 - 9 of 9) sorted by relevance

/linux-master/lib/lz4/
H A Dlz4hc_compress.c65 hc4->nextToUpdate = 64 * KB;
81 U32 idx = hc4->nextToUpdate;
96 hc4->nextToUpdate = target;
664 ctxPtr->nextToUpdate = ctxPtr->dictLimit;
760 if (streamPtr->nextToUpdate < streamPtr->dictLimit)
761 streamPtr->nextToUpdate = streamPtr->dictLimit;
/linux-master/include/linux/
H A Dlz4.h128 unsigned int nextToUpdate; member in struct:__anon110
/linux-master/lib/zstd/compress/
H A Dzstd_lazy.c34 U32 idx = ms->nextToUpdate;
55 ms->nextToUpdate = target;
368 assert(matchEndIdx > curr+8); /* ensure nextToUpdate is increased */
369 ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */
389 if (ip < ms->window.base + ms->nextToUpdate) return 0; /* skipped area */
405 U32 idx = ms->nextToUpdate;
499 for (idx = ms->nextToUpdate; idx < target; idx++) {
509 ms->nextToUpdate = target;
628 U32 idx = ms->nextToUpdate;
637 ms->nextToUpdate
[all...]
H A Dzstd_opt.c537 U32 idx = ms->nextToUpdate;
548 ms->nextToUpdate = target;
681 ms->nextToUpdate = curr+1; /* skip insertion */
781 ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */
809 if (ip < ms->window.base + ms->nextToUpdate)
1058 U32 nextToUpdate3 = ms->nextToUpdate;
1070 DEBUGLOG(5, "ZSTD_compressBlock_opt_generic: current=%u, prefix=%u, nextToUpdate=%u",
1071 (U32)(ip - base), ms->window.dictLimit, ms->nextToUpdate);
1367 assert(ms->window.dictLimit - ms->nextToUpdate <= 1); /* no prefix (note: intentional overflow, defined as 2-complement) */
1376 ms->nextToUpdate
[all...]
H A Dzstd_ldm.c309 * Sets cctx->nextToUpdate to a position corresponding closer to anchor
315 if (curr > ms->nextToUpdate + 1024) {
316 ms->nextToUpdate =
317 curr - MIN(512, curr - ms->nextToUpdate - 1024);
H A Dzstd_compress.c1607 ms->nextToUpdate = ms->window.dictLimit;
2088 dstMatchState->nextToUpdate = srcMatchState->nextToUpdate;
2190 dstMatchState->nextToUpdate = srcMatchState->nextToUpdate;
2753 if (curr > ms->nextToUpdate + 384)
2754 ms->nextToUpdate = curr - MIN(192, (U32)(curr - ms->nextToUpdate - 384));
3586 DEBUGLOG(4, "ZSTD_compressBlock_splitBlock_internal (dstCapacity=%u, dictLimit=%u, nextToUpdate=%u)",
3588 (unsigned)zc->blockState.matchState.nextToUpdate);
[all...]
H A Dzstd_double_fast.c25 const BYTE* ip = base + ms->nextToUpdate;
H A Dzstd_fast.c24 const BYTE* ip = base + ms->nextToUpdate;
H A Dzstd_compress_internal.h211 U32 nextToUpdate; /* index from which to continue table update */ member in struct:ZSTD_matchState_t
1223 /* ms->nextToUpdate = window->dictLimit; */

Completed in 161 milliseconds