Home
last modified time | relevance | path

Searched refs:matchLong (Results 1 - 2 of 2) sorted by relevance

/kernel/linux/linux-6.6/lib/zstd/compress/
H A Dzstd_double_fast.c317 const BYTE* matchLong = base + matchIndexL; in ZSTD_compressBlock_doubleFast_dictMatchState_generic() local
337 if (MEM_read64(matchLong) == MEM_read64(ip)) { in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
338 mLength = ZSTD_count(ip+8, matchLong+8, iend) + 8; in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
339 offset = (U32)(ip-matchLong); in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
340 while (((ip>anchor) & (matchLong>prefixLowest)) && (ip[-1] == matchLong[-1])) { ip--; matchLong--; mLength++; } /* catch up */ in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
573 const BYTE* matchLong = matchLongBase + matchLongIndex; in ZSTD_compressBlock_doubleFast_extDict_generic() local
590 if ((matchLongIndex > dictStartIndex) && (MEM_read64(matchLong) == MEM_read64(ip))) { in ZSTD_compressBlock_doubleFast_extDict_generic()
594 mLength = ZSTD_count_2segments(ip+8, matchLong in ZSTD_compressBlock_doubleFast_extDict_generic()
[all...]
/kernel/linux/linux-5.10/lib/zstd/
H A Dcompress.c1290 const BYTE *matchLong = base + matchIndexL; in ZSTD_compressBlock_doubleFast_generic() local
1300 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() local
1442 if ((matchLongIndex > lowestIndex) && (ZSTD_read64(matchLong) == ZSTD_read64(ip))) { in ZSTD_compressBlock_doubleFast_extDict_generic()
1446 mLength = ZSTD_count_2segments(ip + 8, matchLong in ZSTD_compressBlock_doubleFast_extDict_generic()
[all...]

Completed in 7 milliseconds