Home
last modified time | relevance | path

Searched refs:repMatch (Results 1 – 2 of 2) sorted by relevance

/linux-4.19.296/lib/zstd/
Dzstd_opt.h752 const BYTE *const repMatch = repBase + repIndex; in ZSTD_compressBlock_opt_extDict_generic() local
755 && (ZSTD_readMINMATCH(ip, minMatch) == ZSTD_readMINMATCH(repMatch, minMatch))) { in ZSTD_compressBlock_opt_extDict_generic()
758 …mlen = (U32)ZSTD_count_2segments(ip + minMatch, repMatch + minMatch, iend, repEnd, prefixStart) + … in ZSTD_compressBlock_opt_extDict_generic()
865 const BYTE *const repMatch = repBase + repIndex; in ZSTD_compressBlock_opt_extDict_generic() local
868 && (ZSTD_readMINMATCH(inr, minMatch) == ZSTD_readMINMATCH(repMatch, minMatch))) { in ZSTD_compressBlock_opt_extDict_generic()
871 …mlen = (U32)ZSTD_count_2segments(inr + minMatch, repMatch + minMatch, iend, repEnd, prefixStart) +… in ZSTD_compressBlock_opt_extDict_generic()
Dcompress.c1144 const BYTE *repMatch = repBase + repIndex; in ZSTD_compressBlock_fast_extDict_generic() local
1149 (ZSTD_read32(repMatch) == ZSTD_read32(ip + 1))) { in ZSTD_compressBlock_fast_extDict_generic()
1151 …mLength = ZSTD_count_2segments(ip + 1 + EQUAL_READ32, repMatch + EQUAL_READ32, iend, repMatchEnd, … in ZSTD_compressBlock_fast_extDict_generic()
1431 const BYTE *repMatch = repBase + repIndex; in ZSTD_compressBlock_doubleFast_extDict_generic() local
1436 (ZSTD_read32(repMatch) == ZSTD_read32(ip + 1))) { in ZSTD_compressBlock_doubleFast_extDict_generic()
1438 mLength = ZSTD_count_2segments(ip + 1 + 4, repMatch + 4, iend, repMatchEnd, lowPrefixPtr) + 4; in ZSTD_compressBlock_doubleFast_extDict_generic()
2097 const BYTE *const repMatch = repBase + repIndex; in ZSTD_compressBlock_lazy_extDict_generic() local
2099 if (ZSTD_read32(ip + 1) == ZSTD_read32(repMatch)) { in ZSTD_compressBlock_lazy_extDict_generic()
2103 …ZSTD_count_2segments(ip + 1 + EQUAL_READ32, repMatch + EQUAL_READ32, iend, repEnd, prefixStart) + … in ZSTD_compressBlock_lazy_extDict_generic()
2131 const BYTE *const repMatch = repBase + repIndex; in ZSTD_compressBlock_lazy_extDict_generic() local
[all …]