Searched refs:matchLong (Results 1 – 2 of 2) sorted by relevance
| /src/sys/contrib/zstd/lib/compress/ |
| H A D | zstd_double_fast.c | 317 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--;… 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+8, iend, matchEnd, prefixStart) + 8; in ZSTD_compressBlock_doubleFast_extDict_generic() 596 …while (((ip>anchor) & (matchLong>lowMatchPtr)) && (ip[-1] == matchLong[-1])) { ip--; matchLong--; … in ZSTD_compressBlock_doubleFast_extDict_generic()
|
| /src/sys/contrib/openzfs/module/zstd/lib/compress/ |
| H A D | zstd_double_fast.c | 399 const BYTE* matchLong = base + matchIndexL; in ZSTD_compressBlock_doubleFast_dictMatchState_generic() local 417 if ((matchIndexL >= prefixLowestIndex) && (MEM_read64(matchLong) == MEM_read64(ip))) { in ZSTD_compressBlock_doubleFast_dictMatchState_generic() 419 mLength = ZSTD_count(ip+8, matchLong+8, iend) + 8; in ZSTD_compressBlock_doubleFast_dictMatchState_generic() 420 offset = (U32)(ip-matchLong); in ZSTD_compressBlock_doubleFast_dictMatchState_generic() 421 …while (((ip>anchor) & (matchLong>prefixLowest)) && (ip[-1] == matchLong[-1])) { ip--; matchLong--;… in ZSTD_compressBlock_doubleFast_dictMatchState_generic() 654 const BYTE* matchLong = matchLongBase + matchLongIndex; in ZSTD_compressBlock_doubleFast_extDict_generic() local 671 if ((matchLongIndex > dictStartIndex) && (MEM_read64(matchLong) == MEM_read64(ip))) { in ZSTD_compressBlock_doubleFast_extDict_generic() 675 mLength = ZSTD_count_2segments(ip+8, matchLong+8, iend, matchEnd, prefixStart) + 8; in ZSTD_compressBlock_doubleFast_extDict_generic() 677 …while (((ip>anchor) & (matchLong>lowMatchPtr)) && (ip[-1] == matchLong[-1])) { ip--; matchLong--; … in ZSTD_compressBlock_doubleFast_extDict_generic()
|