Lines Matching refs:mLength
225 size_t mLength; in ZSTD_compressBlock_fast_noDict_generic() local
277 mLength = ip0[-1] == match0[-1]; in ZSTD_compressBlock_fast_noDict_generic()
278 ip0 -= mLength; in ZSTD_compressBlock_fast_noDict_generic()
279 match0 -= mLength; in ZSTD_compressBlock_fast_noDict_generic()
281 mLength += 4; in ZSTD_compressBlock_fast_noDict_generic()
383 mLength = 4; in ZSTD_compressBlock_fast_noDict_generic()
389 mLength++; in ZSTD_compressBlock_fast_noDict_generic()
395 mLength += ZSTD_count(ip0 + mLength, match0 + mLength, iend); in ZSTD_compressBlock_fast_noDict_generic()
397 ZSTD_storeSeq(seqStore, (size_t)(ip0 - anchor), anchor, iend, offcode, mLength); in ZSTD_compressBlock_fast_noDict_generic()
399 ip0 += mLength; in ZSTD_compressBlock_fast_noDict_generic()
542 size_t mLength; in ZSTD_compressBlock_fast_dictMatchState_generic() local
569 … mLength = ZSTD_count_2segments(ip0 + 1 + 4, repMatch + 4, iend, repMatchEnd, prefixStart) + 4; in ZSTD_compressBlock_fast_dictMatchState_generic()
571 … ZSTD_storeSeq(seqStore, (size_t) (ip0 - anchor), anchor, iend, REPCODE1_TO_OFFBASE, mLength); in ZSTD_compressBlock_fast_dictMatchState_generic()
584 … mLength = ZSTD_count_2segments(ip0 + 4, dictMatch + 4, iend, dictEnd, prefixStart) + 4; in ZSTD_compressBlock_fast_dictMatchState_generic()
589 mLength++; in ZSTD_compressBlock_fast_dictMatchState_generic()
593 …ZSTD_storeSeq(seqStore, (size_t) (ip0 - anchor), anchor, iend, OFFSET_TO_OFFBASE(offset), mLength); in ZSTD_compressBlock_fast_dictMatchState_generic()
602 mLength = ZSTD_count(ip0 + 4, match + 4, iend) + 4; in ZSTD_compressBlock_fast_dictMatchState_generic()
607 mLength++; in ZSTD_compressBlock_fast_dictMatchState_generic()
611 …ZSTD_storeSeq(seqStore, (size_t) (ip0 - anchor), anchor, iend, OFFSET_TO_OFFBASE(offset), mLength); in ZSTD_compressBlock_fast_dictMatchState_generic()
633 assert(mLength); in ZSTD_compressBlock_fast_dictMatchState_generic()
634 ip0 += mLength; in ZSTD_compressBlock_fast_dictMatchState_generic()
748 size_t mLength; in ZSTD_compressBlock_fast_extDict_generic() local
813 mLength = ip0[-1] == match0[-1]; in ZSTD_compressBlock_fast_extDict_generic()
814 ip0 -= mLength; in ZSTD_compressBlock_fast_extDict_generic()
815 match0 -= mLength; in ZSTD_compressBlock_fast_extDict_generic()
817 mLength += 4; in ZSTD_compressBlock_fast_extDict_generic()
909 mLength = 4; in ZSTD_compressBlock_fast_extDict_generic()
915 mLength++; in ZSTD_compressBlock_fast_extDict_generic()
922 mLength += ZSTD_count_2segments(ip0 + mLength, match0 + mLength, iend, matchEnd, prefixStart); in ZSTD_compressBlock_fast_extDict_generic()
924 ZSTD_storeSeq(seqStore, (size_t)(ip0 - anchor), anchor, iend, offcode, mLength); in ZSTD_compressBlock_fast_extDict_generic()
926 ip0 += mLength; in ZSTD_compressBlock_fast_extDict_generic()