Lines Matching refs:mLength
1036 size_t mLength; in ZSTD_compressBlock_fast_generic() local
1044 mLength = ZSTD_count(ip + 1 + 4, ip + 1 + 4 - offset_1, iend) + 4; in ZSTD_compressBlock_fast_generic()
1046 ZSTD_storeSeq(seqStorePtr, ip - anchor, anchor, 0, mLength - MINMATCH); in ZSTD_compressBlock_fast_generic()
1053 mLength = ZSTD_count(ip + 4, match + 4, iend) + 4; in ZSTD_compressBlock_fast_generic()
1058 mLength++; in ZSTD_compressBlock_fast_generic()
1063 ZSTD_storeSeq(seqStorePtr, ip - anchor, anchor, offset + ZSTD_REP_MOVE, mLength - MINMATCH); in ZSTD_compressBlock_fast_generic()
1067 ip += mLength; in ZSTD_compressBlock_fast_generic()
1145 size_t mLength; in ZSTD_compressBlock_fast_extDict_generic() local
1151 …mLength = ZSTD_count_2segments(ip + 1 + EQUAL_READ32, repMatch + EQUAL_READ32, iend, repMatchEnd, … in ZSTD_compressBlock_fast_extDict_generic()
1153 ZSTD_storeSeq(seqStorePtr, ip - anchor, anchor, 0, mLength - MINMATCH); in ZSTD_compressBlock_fast_extDict_generic()
1163 …mLength = ZSTD_count_2segments(ip + EQUAL_READ32, match + EQUAL_READ32, iend, matchEnd, lowPrefixP… in ZSTD_compressBlock_fast_extDict_generic()
1167 mLength++; in ZSTD_compressBlock_fast_extDict_generic()
1172 ZSTD_storeSeq(seqStorePtr, ip - anchor, anchor, offset + ZSTD_REP_MOVE, mLength - MINMATCH); in ZSTD_compressBlock_fast_extDict_generic()
1177 ip += mLength; in ZSTD_compressBlock_fast_extDict_generic()
1284 size_t mLength; in ZSTD_compressBlock_doubleFast_generic() local
1295 mLength = ZSTD_count(ip + 1 + 4, ip + 1 + 4 - offset_1, iend) + 4; in ZSTD_compressBlock_doubleFast_generic()
1297 ZSTD_storeSeq(seqStorePtr, ip - anchor, anchor, 0, mLength - MINMATCH); in ZSTD_compressBlock_doubleFast_generic()
1301 mLength = ZSTD_count(ip + 8, matchLong + 8, iend) + 8; in ZSTD_compressBlock_doubleFast_generic()
1306 mLength++; in ZSTD_compressBlock_doubleFast_generic()
1314 mLength = ZSTD_count(ip + 9, match3 + 8, iend) + 8; in ZSTD_compressBlock_doubleFast_generic()
1320 mLength++; in ZSTD_compressBlock_doubleFast_generic()
1323 mLength = ZSTD_count(ip + 4, match + 4, iend) + 4; in ZSTD_compressBlock_doubleFast_generic()
1328 mLength++; in ZSTD_compressBlock_doubleFast_generic()
1339 ZSTD_storeSeq(seqStorePtr, ip - anchor, anchor, offset + ZSTD_REP_MOVE, mLength - MINMATCH); in ZSTD_compressBlock_doubleFast_generic()
1343 ip += mLength; in ZSTD_compressBlock_doubleFast_generic()
1432 size_t mLength; in ZSTD_compressBlock_doubleFast_extDict_generic() local
1438 mLength = ZSTD_count_2segments(ip + 1 + 4, repMatch + 4, iend, repMatchEnd, lowPrefixPtr) + 4; in ZSTD_compressBlock_doubleFast_extDict_generic()
1440 ZSTD_storeSeq(seqStorePtr, ip - anchor, anchor, 0, mLength - MINMATCH); in ZSTD_compressBlock_doubleFast_extDict_generic()
1446 mLength = ZSTD_count_2segments(ip + 8, matchLong + 8, iend, matchEnd, lowPrefixPtr) + 8; in ZSTD_compressBlock_doubleFast_extDict_generic()
1451 mLength++; in ZSTD_compressBlock_doubleFast_extDict_generic()
1455 ZSTD_storeSeq(seqStorePtr, ip - anchor, anchor, offset + ZSTD_REP_MOVE, mLength - MINMATCH); in ZSTD_compressBlock_doubleFast_extDict_generic()
1467 mLength = ZSTD_count_2segments(ip + 9, match3 + 8, iend, matchEnd, lowPrefixPtr) + 8; in ZSTD_compressBlock_doubleFast_extDict_generic()
1473 mLength++; in ZSTD_compressBlock_doubleFast_extDict_generic()
1478 mLength = ZSTD_count_2segments(ip + 4, match + 4, iend, matchEnd, lowPrefixPtr) + 4; in ZSTD_compressBlock_doubleFast_extDict_generic()
1483 mLength++; in ZSTD_compressBlock_doubleFast_extDict_generic()
1488 ZSTD_storeSeq(seqStorePtr, ip - anchor, anchor, offset + ZSTD_REP_MOVE, mLength - MINMATCH); in ZSTD_compressBlock_doubleFast_extDict_generic()
1497 ip += mLength; in ZSTD_compressBlock_doubleFast_extDict_generic()