Searched refs:ZSTD_REP_MOVE (Results 1 – 8 of 8) sorted by relevance
/linux-6.1.9/lib/zstd/compress/ |
D | zstd_lazy.c | 200 …curr, (U32)bestLength, (U32)matchLength, (U32)*offsetPtr, ZSTD_REP_MOVE + curr - matchIndex, dictM… in ZSTD_DUBT_findBetterDictMatch() 201 bestLength = matchLength, *offsetPtr = ZSTD_REP_MOVE + curr - matchIndex; in ZSTD_DUBT_findBetterDictMatch() 221 U32 const mIndex = curr - ((U32)*offsetPtr - ZSTD_REP_MOVE); (void)mIndex; in ZSTD_DUBT_findBetterDictMatch() 331 bestLength = matchLength, *offsetPtr = ZSTD_REP_MOVE + curr - matchIndex; in ZSTD_DUBT_findBestMatch() 371 U32 const mIndex = curr - ((U32)*offsetPtr - ZSTD_REP_MOVE); (void)mIndex; in ZSTD_DUBT_findBestMatch() 656 *offsetPtr = curr - matchIndex + ZSTD_REP_MOVE; in ZSTD_HcFindBestMatch_generic() 708 *offsetPtr = curr - (matchIndex + ddsIndexDelta) + ZSTD_REP_MOVE; in ZSTD_HcFindBestMatch_generic() 745 *offsetPtr = curr - (matchIndex + ddsIndexDelta) + ZSTD_REP_MOVE; in ZSTD_HcFindBestMatch_generic() 773 *offsetPtr = curr - (matchIndex + dmsIndexDelta) + ZSTD_REP_MOVE; in ZSTD_HcFindBestMatch_generic() 1063 while ( ((start > anchor) & (start - (offset-ZSTD_REP_MOVE) > prefixLowest)) in ZSTD_compressBlock_lazy_generic() [all …]
|
D | zstd_fast.c | 143 offcode = offset_1 + ZSTD_REP_MOVE; in ZSTD_compressBlock_fast_generic() 295 …ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, offset + ZSTD_REP_MOVE, mLength-MINMATC… in ZSTD_compressBlock_fast_dictMatchState_generic() 310 …ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, offset + ZSTD_REP_MOVE, mLength-MINMATC… in ZSTD_compressBlock_fast_dictMatchState_generic() 442 …ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, offset + ZSTD_REP_MOVE, mLength-MINMATC… in ZSTD_compressBlock_fast_extDict_generic()
|
D | zstd_double_fast.c | 251 …ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, offset + ZSTD_REP_MOVE, mLength-MINMATC… in ZSTD_compressBlock_doubleFast_generic() 426 …ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, offset + ZSTD_REP_MOVE, mLength-MINMATC… in ZSTD_compressBlock_doubleFast_extDict_generic() 451 …ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, offset + ZSTD_REP_MOVE, mLength-MINMATC… in ZSTD_compressBlock_doubleFast_extDict_generic()
|
D | zstd_opt.c | 641 matches[0].off = (curr - matchIndex3) + ZSTD_REP_MOVE; in ZSTD_insertBtAndGetAllMatches() 675 (U32)matchLength, curr - matchIndex, curr - matchIndex + ZSTD_REP_MOVE); in ZSTD_insertBtAndGetAllMatches() 680 matches[mnum].off = (curr - matchIndex) + ZSTD_REP_MOVE; in ZSTD_insertBtAndGetAllMatches() 724 (U32)matchLength, curr - matchIndex, curr - matchIndex + ZSTD_REP_MOVE); in ZSTD_insertBtAndGetAllMatches() 728 matches[mnum].off = (curr - matchIndex) + ZSTD_REP_MOVE; in ZSTD_insertBtAndGetAllMatches() 874 U32 candidateOffCode = optLdm->offset + ZSTD_REP_MOVE; in ZSTD_optLdm_maybeAddMatch()
|
D | zstd_ldm.c | 676 sequence.offset + ZSTD_REP_MOVE, in ZSTD_ldm_blockCompress()
|
D | zstd_compress_internal.h | 405 newReps.rep[0] = offset - ZSTD_REP_MOVE; in ZSTD_updateRep()
|
D | zstd_compress.c | 4450 … RETURN_ERROR_IF(offCode > offsetBound + ZSTD_REP_MOVE, corruption_detected, "Offset too large!"); in ZSTD_validateSequence() 4457 U32 offCode = rawOffset + ZSTD_REP_MOVE; in ZSTD_finalizeOffCode()
|
/linux-6.1.9/lib/zstd/common/ |
D | zstd_internal.h | 133 #define ZSTD_REP_MOVE (ZSTD_REP_NUM-1) macro
|