Searched refs:repMatch2 (Results 1 – 2 of 2) sorted by relevance
/linux-6.1.9/lib/zstd/compress/ |
D | zstd_fast.c | 327 const BYTE* repMatch2 = repIndex2 < prefixStartIndex ? in ZSTD_compressBlock_fast_dictMatchState_generic() local 331 && (MEM_read32(repMatch2) == MEM_read32(ip)) ) { in ZSTD_compressBlock_fast_dictMatchState_generic() 333 … size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixStart) + 4; in ZSTD_compressBlock_fast_dictMatchState_generic() 455 …const BYTE* const repMatch2 = repIndex2 < prefixStartIndex ? dictBase + repIndex2 : base + repInde… in ZSTD_compressBlock_fast_extDict_generic() local 457 && (MEM_read32(repMatch2) == MEM_read32(ip)) ) { in ZSTD_compressBlock_fast_extDict_generic() 459 … size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixStart) + 4; in ZSTD_compressBlock_fast_extDict_generic()
|
D | zstd_double_fast.c | 273 const BYTE* repMatch2 = dictMode == ZSTD_dictMatchState in ZSTD_compressBlock_doubleFast_generic() local 278 && (MEM_read32(repMatch2) == MEM_read32(ip)) ) { in ZSTD_compressBlock_doubleFast_generic() 280 …size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixLowest) + 4; in ZSTD_compressBlock_doubleFast_generic() 476 … const BYTE* repMatch2 = repIndex2 < prefixStartIndex ? dictBase + repIndex2 : base + repIndex2; in ZSTD_compressBlock_doubleFast_extDict_generic() local 479 && (MEM_read32(repMatch2) == MEM_read32(ip)) ) { in ZSTD_compressBlock_doubleFast_extDict_generic() 481 … size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixStart) + 4; in ZSTD_compressBlock_doubleFast_extDict_generic()
|