Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4hc.h214 uint32_t nextToUpdate; /* index from which to continue dictionary update */ member
234 unsigned int nextToUpdate; /* index from which to continue dictionary update */ member
Dlz4hc.c107 hc4->nextToUpdate = (U32) startingOffset; in LZ4HC_init_internal()
123 U32 idx = hc4->nextToUpdate; in LZ4HC_Insert()
134 hc4->nextToUpdate = target; in LZ4HC_Insert()
1066 ctxPtr->nextToUpdate = ctxPtr->dictLimit; /* match referencing will resume from there */ in LZ4HC_setExternalDict()
1140 …if (streamPtr->nextToUpdate < streamPtr->dictLimit) streamPtr->nextToUpdate = streamPtr->dictLimit; in LZ4_saveDictHC()
/external/zstd/lib/compress/
Dzstd_opt.c490 U32 idx = ms->nextToUpdate; in ZSTD_updateTree_internal()
501 ms->nextToUpdate = target; in ZSTD_updateTree_internal()
634 ms->nextToUpdate = curr+1; /* skip insertion */ in ZSTD_insertBtAndGetAllMatches()
737 ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */ in ZSTD_insertBtAndGetAllMatches()
754 if (ip < ms->window.base + ms->nextToUpdate) return 0; /* skipped area */ in ZSTD_BtGetAllMatches()
949 U32 nextToUpdate3 = ms->nextToUpdate; in ZSTD_compressBlock_opt_generic()
962 (U32)(ip - base), ms->window.dictLimit, ms->nextToUpdate); in ZSTD_compressBlock_opt_generic()
1264 …assert(ms->window.dictLimit - ms->nextToUpdate <= 1); /* no prefix (note: intentional overflow, d… in ZSTD_initStats_ultra()
1273 ms->nextToUpdate = ms->window.dictLimit; in ZSTD_initStats_ultra()
Dzstd_lazy.c34 U32 idx = ms->nextToUpdate; in ZSTD_updateDUBT()
55 ms->nextToUpdate = target; in ZSTD_updateDUBT()
368 ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */ in ZSTD_DUBT_findBestMatch()
388 if (ip < ms->window.base + ms->nextToUpdate) return 0; /* skipped area */ in ZSTD_BtFindBestMatch()
461 U32 idx = ms->nextToUpdate; in ZSTD_insertAndFindFirstIndex_internal()
470 ms->nextToUpdate = target; in ZSTD_insertAndFindFirstIndex_internal()
486 U32 idx = ms->nextToUpdate; in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
581 for (idx = ms->nextToUpdate; idx < target; idx++) { in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
591 ms->nextToUpdate = target; in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
Dzstd_ldm.c264 if (curr > ms->nextToUpdate + 1024) { in ZSTD_ldm_limitTableUpdate()
265 ms->nextToUpdate = in ZSTD_ldm_limitTableUpdate()
266 curr - MIN(512, curr - ms->nextToUpdate - 1024); in ZSTD_ldm_limitTableUpdate()
Dzstd_compress.c1492 ms->nextToUpdate = ms->window.dictLimit; in ZSTD_invalidateMatchState()
1913 dstMatchState->nextToUpdate = srcMatchState->nextToUpdate; in ZSTD_resetCCtx_byCopyingCDict()
2004 dstMatchState->nextToUpdate = srcMatchState->nextToUpdate; in ZSTD_copyCCtx_internal()
2472 if (curr > ms->nextToUpdate + 384) in ZSTD_buildSeqStore()
2473 ms->nextToUpdate = curr - MIN(192, (U32)(curr - ms->nextToUpdate - 384)); in ZSTD_buildSeqStore()
2677 (unsigned)zc->blockState.matchState.nextToUpdate); in ZSTD_compressBlock_internal()
2795 …blockState.matchState.window.dictLimit, (unsigned)zc->blockState.matchState.nextToUpdate, srcSize); in ZSTD_compressBlock_targetCBlockSize()
2823 if (ms->nextToUpdate < correction) ms->nextToUpdate = 0; in ZSTD_overflowCorrectIfNeeded()
2824 else ms->nextToUpdate -= correction; in ZSTD_overflowCorrectIfNeeded()
2870 if (ms->nextToUpdate < ms->window.lowLimit) ms->nextToUpdate = ms->window.lowLimit; in ZSTD_compress_frameChunk()
[all …]
Dzstd_fast.c24 const BYTE* ip = base + ms->nextToUpdate; in ZSTD_fillHashTable()
Dzstd_double_fast.c25 const BYTE* ip = base + ms->nextToUpdate; in ZSTD_fillDoubleHashTable()
Dzstd_compress_internal.h161 U32 nextToUpdate; /* index from which to continue table update */ member