Searched refs:repMatch (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/sys/contrib/zstd/lib/compress/ |
| H A D | zstd_lazy.c | 667 const BYTE* const repMatch = repBase + repIndex; in ZSTD_compressBlock_lazy_extDict_generic() local 669 if (MEM_read32(ip+1) == MEM_read32(repMatch)) { in ZSTD_compressBlock_lazy_extDict_generic() 672 … matchLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repEnd, prefixStart) + 4; in ZSTD_compressBlock_lazy_extDict_generic() 697 const BYTE* const repMatch = repBase + repIndex; in ZSTD_compressBlock_lazy_extDict_generic() local 699 if (MEM_read32(ip) == MEM_read32(repMatch)) { in ZSTD_compressBlock_lazy_extDict_generic() 702 … size_t const repLength = ZSTD_count_2segments(ip+4, repMatch+4, iend, repEnd, prefixStart) + 4; in ZSTD_compressBlock_lazy_extDict_generic() 727 const BYTE* const repMatch = repBase + repIndex; in ZSTD_compressBlock_lazy_extDict_generic() local 729 if (MEM_read32(ip) == MEM_read32(repMatch)) { in ZSTD_compressBlock_lazy_extDict_generic() 771 const BYTE* const repMatch = repBase + repIndex; in ZSTD_compressBlock_lazy_extDict_generic() local 773 if (MEM_read32(ip) == MEM_read32(repMatch)) { in ZSTD_compressBlock_lazy_extDict_generic() [all …]
|
| H A D | zstd_fast.c | 176 const BYTE* repMatch = repBase + repIndex; in ZSTD_compressBlock_fast_extDict_generic() local 181 && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) { in ZSTD_compressBlock_fast_extDict_generic() 183 mLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repMatchEnd, lowPrefixPtr) + 4; in ZSTD_compressBlock_fast_extDict_generic()
|
| H A D | zstd_double_fast.c | 219 const BYTE* repMatch = repBase + repIndex; in ZSTD_compressBlock_doubleFast_extDict_generic() local 224 && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) { in ZSTD_compressBlock_doubleFast_extDict_generic() 226 mLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repMatchEnd, lowPrefixPtr) + 4; in ZSTD_compressBlock_doubleFast_extDict_generic()
|
| H A D | zstd_opt.c | 452 const BYTE* const repMatch = dictBase + repIndex; in ZSTD_insertBtAndGetAllMatches() local 457 && (ZSTD_readMINMATCH(ip, minMatch) == ZSTD_readMINMATCH(repMatch, minMatch)) ) { in ZSTD_insertBtAndGetAllMatches() 458 …repLen = (U32)ZSTD_count_2segments(ip+minMatch, repMatch+minMatch, iLimit, dictEnd, prefixStart) +… in ZSTD_insertBtAndGetAllMatches()
|