Lines Matching defs:repMatch

1547             const BYTE* repMatch = ((dictMode == ZSTD_dictMatchState || dictMode == ZSTD_dedicatedDictSearch)
1552 && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) {
1554 matchLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repMatchEnd, prefixLowest) + 4;
1591 const BYTE* repMatch = repIndex < prefixLowestIndex ?
1595 && (MEM_read32(repMatch) == MEM_read32(ip)) ) {
1597 size_t const mlRep = ZSTD_count_2segments(ip+4, repMatch+4, iend, repMatchEnd, prefixLowest) + 4;
1627 const BYTE* repMatch = repIndex < prefixLowestIndex ?
1631 && (MEM_read32(repMatch) == MEM_read32(ip)) ) {
1633 size_t const mlRep = ZSTD_count_2segments(ip+4, repMatch+4, iend, repMatchEnd, prefixLowest) + 4;
1682 const BYTE* repMatch = repIndex < prefixLowestIndex ?
1686 && (MEM_read32(repMatch) == MEM_read32(ip)) ) {
1688 matchLength = ZSTD_count_2segments(ip+4, repMatch+4, iend, repEnd2, prefixLowest) + 4;
1914 const BYTE* const repMatch = repBase + repIndex;
1917 if (MEM_read32(ip+1) == MEM_read32(repMatch)) {
1920 matchLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repEnd, prefixStart) + 4;
1946 const BYTE* const repMatch = repBase + repIndex;
1949 if (MEM_read32(ip) == MEM_read32(repMatch)) {
1952 size_t const repLength = ZSTD_count_2segments(ip+4, repMatch+4, iend, repEnd, prefixStart) + 4;
1978 const BYTE* const repMatch = repBase + repIndex;
1981 if (MEM_read32(ip) == MEM_read32(repMatch)) {
1984 size_t const repLength = ZSTD_count_2segments(ip+4, repMatch+4, iend, repEnd, prefixStart) + 4;
2025 const BYTE* const repMatch = repBase + repIndex;
2028 if (MEM_read32(ip) == MEM_read32(repMatch)) {
2031 matchLength = ZSTD_count_2segments(ip+4, repMatch+4, iend, repEnd, prefixStart) + 4;