Searched refs:repMatch2 (Results 1 - 3 of 3) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_fast.c | 494 const BYTE* repMatch2 = repIndex2 < prefixStartIndex ? in ZSTD_compressBlock_fast_dictMatchState_generic() local 498 && (MEM_read32(repMatch2) == MEM_read32(ip)) ) { in ZSTD_compressBlock_fast_dictMatchState_generic() 500 size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixStart) + 4; in ZSTD_compressBlock_fast_dictMatchState_generic() 630 const BYTE* const repMatch2 = repIndex2 < prefixStartIndex ? dictBase + repIndex2 : base + repIndex2; in ZSTD_compressBlock_fast_extDict_generic() local 632 && (MEM_read32(repMatch2) == MEM_read32(ip)) ) { in ZSTD_compressBlock_fast_extDict_generic() 634 size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixStart) + 4; in ZSTD_compressBlock_fast_extDict_generic()
|
H A D | zstd_double_fast.c | 443 const BYTE* repMatch2 = repIndex2 < prefixLowestIndex ? in ZSTD_compressBlock_doubleFast_dictMatchState_generic() local 447 && (MEM_read32(repMatch2) == MEM_read32(ip)) ) { in ZSTD_compressBlock_doubleFast_dictMatchState_generic() 449 size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixLowest) + 4; in ZSTD_compressBlock_doubleFast_dictMatchState_generic() 649 const BYTE* repMatch2 = repIndex2 < prefixStartIndex ? dictBase + repIndex2 : base + repIndex2; in ZSTD_compressBlock_doubleFast_extDict_generic() local 652 && (MEM_read32(repMatch2) == MEM_read32(ip)) ) { in ZSTD_compressBlock_doubleFast_extDict_generic() 654 size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixStart) + 4; in ZSTD_compressBlock_doubleFast_extDict_generic()
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | compress.c | 1188 const BYTE *repMatch2 = repIndex2 < dictLimit ? dictBase + repIndex2 : base + repIndex2; in ZSTD_compressBlock_fast_extDict_generic() local 1190 && (ZSTD_read32(repMatch2) == ZSTD_read32(ip))) { in ZSTD_compressBlock_fast_extDict_generic() 1193 ZSTD_count_2segments(ip + EQUAL_READ32, repMatch2 + EQUAL_READ32, iend, repEnd2, lowPrefixPtr) + EQUAL_READ32; in ZSTD_compressBlock_fast_extDict_generic() 1510 const BYTE *repMatch2 = repIndex2 < dictLimit ? dictBase + repIndex2 : base + repIndex2; in ZSTD_compressBlock_doubleFast_extDict_generic() local 1512 && (ZSTD_read32(repMatch2) == ZSTD_read32(ip))) { in ZSTD_compressBlock_doubleFast_extDict_generic() 1515 ZSTD_count_2segments(ip + EQUAL_READ32, repMatch2 + EQUAL_READ32, iend, repEnd2, lowPrefixPtr) + EQUAL_READ32; in ZSTD_compressBlock_doubleFast_extDict_generic()
|
Completed in 11 milliseconds