Home
last modified time | relevance | path

Searched refs:mLength (Results 1 – 3 of 3) sorted by relevance

/linux-5.19.10/lib/zstd/compress/ !
Dzstd_double_fast.c126 size_t mLength; in ZSTD_compressBlock_doubleFast_generic() local
149 mLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repMatchEnd, prefixLowest) + 4; in ZSTD_compressBlock_doubleFast_generic()
151 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, 0, mLength-MINMATCH); in ZSTD_compressBlock_doubleFast_generic()
158 mLength = ZSTD_count(ip+1+4, ip+1+4-offset_1, iend) + 4; in ZSTD_compressBlock_doubleFast_generic()
160 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, 0, mLength-MINMATCH); in ZSTD_compressBlock_doubleFast_generic()
167 mLength = ZSTD_count(ip+8, matchLong+8, iend) + 8; in ZSTD_compressBlock_doubleFast_generic()
169 …chLong>prefixLowest)) && (ip[-1] == matchLong[-1])) { ip--; matchLong--; mLength++; } /* catch up … in ZSTD_compressBlock_doubleFast_generic()
179 mLength = ZSTD_count_2segments(ip+8, dictMatchL+8, iend, dictEnd, prefixLowest) + 8; in ZSTD_compressBlock_doubleFast_generic()
181 …tMatchL>dictStart)) && (ip[-1] == dictMatchL[-1])) { ip--; dictMatchL--; mLength++; } /* catch up … in ZSTD_compressBlock_doubleFast_generic()
217 mLength = ZSTD_count(ip+9, matchL3+8, iend) + 8; in ZSTD_compressBlock_doubleFast_generic()
[all …]
Dzstd_fast.c91 size_t mLength; in ZSTD_compressBlock_fast_generic() local
116 mLength = (ip2[-1] == repMatch[-1]) ? 1 : 0; in ZSTD_compressBlock_fast_generic()
117 ip0 = ip2 - mLength; in ZSTD_compressBlock_fast_generic()
118 match0 = repMatch - mLength; in ZSTD_compressBlock_fast_generic()
119 mLength += 4; in ZSTD_compressBlock_fast_generic()
144 mLength = 4; in ZSTD_compressBlock_fast_generic()
147 && (ip0[-1] == match0[-1])) { ip0--; match0--; mLength++; } /* catch up */ in ZSTD_compressBlock_fast_generic()
151 mLength += ZSTD_count(ip0+mLength, match0+mLength, iend); in ZSTD_compressBlock_fast_generic()
152 ZSTD_storeSeq(seqStore, (size_t)(ip0-anchor), anchor, iend, offcode, mLength-MINMATCH); in ZSTD_compressBlock_fast_generic()
154 ip0 += mLength; in ZSTD_compressBlock_fast_generic()
[all …]
Dzstd_ldm.c363 bestMatchLength = 0, mLength; in ZSTD_ldm_generateSequences_internal() local
431 mLength = forwardMatchLength + backwardMatchLength; in ZSTD_ldm_generateSequences_internal()
440 seq->matchLength = (U32)mLength; in ZSTD_ldm_generateSequences_internal()