Home
last modified time | relevance | path

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

/dragonfly/contrib/zstd/lib/compress/
H A Dzstd_double_fast.c126 size_t mLength; in ZSTD_compressBlock_doubleFast_generic() local
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()
217 mLength = ZSTD_count(ip+9, matchL3+8, iend) + 8; in ZSTD_compressBlock_doubleFast_generic()
238 mLength = ZSTD_count_2segments(ip+4, match+4, iend, dictEnd, prefixLowest) + 4; in ZSTD_compressBlock_doubleFast_generic()
242 mLength = ZSTD_count(ip+4, match+4, iend) + 4; in ZSTD_compressBlock_doubleFast_generic()
257 ip += mLength; in ZSTD_compressBlock_doubleFast_generic()
408 size_t mLength; in ZSTD_compressBlock_doubleFast_extDict_generic() local
[all …]
H A Dzstd_fast.c91 size_t mLength; in ZSTD_compressBlock_fast_generic() local
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()
151 mLength += ZSTD_count(ip0+mLength, match0+mLength, iend); in ZSTD_compressBlock_fast_generic()
154 ip0 += mLength; in ZSTD_compressBlock_fast_generic()
259 size_t mLength; in ZSTD_compressBlock_fast_dictMatchState_generic() local
291 ip--; dictMatch--; mLength++; in ZSTD_compressBlock_fast_dictMatchState_generic()
314 ip += mLength; in ZSTD_compressBlock_fast_dictMatchState_generic()
[all …]
H A Dzstd_ldm.c302 size_t mLength; in ZSTD_ldm_generateSequences_internal() local
390 mLength = forwardMatchLength + backwardMatchLength; in ZSTD_ldm_generateSequences_internal()
406 seq->matchLength = (U32)mLength; in ZSTD_ldm_generateSequences_internal()
420 if (ip + mLength <= ilimit) { in ZSTD_ldm_generateSequences_internal()
423 ip + mLength, base, hBits, *params); in ZSTD_ldm_generateSequences_internal()
424 lastHashed = ip + mLength - 1; in ZSTD_ldm_generateSequences_internal()
426 ip += mLength; in ZSTD_ldm_generateSequences_internal()