Searched refs:matchLong (Results 1 – 1 of 1) sorted by relevance
1290 const BYTE *matchLong = base + matchIndexL; in ZSTD_compressBlock_doubleFast_generic() local1300 if ((matchIndexL > lowestIndex) && (ZSTD_read64(matchLong) == ZSTD_read64(ip))) { in ZSTD_compressBlock_doubleFast_generic()1301 mLength = ZSTD_count(ip + 8, matchLong + 8, iend) + 8; in ZSTD_compressBlock_doubleFast_generic()1302 offset = (U32)(ip - matchLong); in ZSTD_compressBlock_doubleFast_generic()1303 while (((ip > anchor) & (matchLong > lowest)) && (ip[-1] == matchLong[-1])) { in ZSTD_compressBlock_doubleFast_generic()1305 matchLong--; in ZSTD_compressBlock_doubleFast_generic()1426 const BYTE *matchLong = matchLongBase + matchLongIndex; in ZSTD_compressBlock_doubleFast_extDict_generic() local1442 if ((matchLongIndex > lowestIndex) && (ZSTD_read64(matchLong) == ZSTD_read64(ip))) { 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()1448 while (((ip > anchor) & (matchLong > lowMatchPtr)) && (ip[-1] == matchLong[-1])) { in ZSTD_compressBlock_doubleFast_extDict_generic()[all …]