Home
last modified time | relevance | path

Searched refs:repIndex (Results 1 – 5 of 5) sorted by relevance

/linux/lib/zstd/compress/
H A Dzstd_lazy.c1589 const U32 repIndex = (U32)(ip - base) + 1 - offset_1; in ZSTD_compressBlock_lazy_generic() local
1591 && repIndex < prefixLowestIndex) ? in ZSTD_compressBlock_lazy_generic()
1592 dictBase + (repIndex - dictIndexDelta) : in ZSTD_compressBlock_lazy_generic()
1593 base + repIndex; in ZSTD_compressBlock_lazy_generic()
1594 if ((ZSTD_index_overlap_check(prefixLowestIndex, repIndex)) in ZSTD_compressBlock_lazy_generic()
1596 const BYTE* repMatchEnd = repIndex < prefixLowestIndex ? dictEnd : iend; in ZSTD_compressBlock_lazy_generic()
1642 const U32 repIndex = (U32)(ip - base) - offset_1; in ZSTD_compressBlock_lazy_generic() local
1643 const BYTE* repMatch = repIndex < prefixLowestIndex ? in ZSTD_compressBlock_lazy_generic()
1644 dictBase + (repIndex - dictIndexDelta) : in ZSTD_compressBlock_lazy_generic()
1645 base + repIndex; in ZSTD_compressBlock_lazy_generic()
[all …]
H A Dzstd_fast.c558 const U32 repIndex = curr + 1 - offset_1; in ZSTD_compressBlock_fast_dictMatchState_generic() local
559 const BYTE* repMatch = (repIndex < prefixStartIndex) ? in ZSTD_compressBlock_fast_dictMatchState_generic()
560 dictBase + (repIndex - dictIndexDelta) : in ZSTD_compressBlock_fast_dictMatchState_generic()
561 base + repIndex; in ZSTD_compressBlock_fast_dictMatchState_generic()
566 if ((ZSTD_index_overlap_check(prefixStartIndex, repIndex)) in ZSTD_compressBlock_fast_dictMatchState_generic()
568 const BYTE* const repMatchEnd = repIndex < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_fast_dictMatchState_generic()
793 U32 const repIndex = current2 - offset_1; in ZSTD_compressBlock_fast_extDict_generic() local
794 const BYTE* const repBase = repIndex < prefixStartIndex ? dictBase : base; in ZSTD_compressBlock_fast_extDict_generic()
796 if ( ((U32)(prefixStartIndex - repIndex) >= 4) /* intentional underflow */ in ZSTD_compressBlock_fast_extDict_generic()
798 rval = MEM_read32(repBase + repIndex); in ZSTD_compressBlock_fast_extDict_generic()
[all …]
H A Dzstd_double_fast.c401 const U32 repIndex = curr + 1 - offset_1; in ZSTD_compressBlock_doubleFast_dictMatchState_generic() local
402 const BYTE* repMatch = (repIndex < prefixLowestIndex) ? in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
403 dictBase + (repIndex - dictIndexDelta) : in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
404 base + repIndex; in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
408 if ((ZSTD_index_overlap_check(prefixLowestIndex, repIndex)) in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
410 const BYTE* repMatchEnd = repIndex < prefixLowestIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
657 const U32 repIndex = curr + 1 - offset_1; /* offset_1 expected <= curr +1 */ in ZSTD_compressBlock_doubleFast_extDict_generic() local
658 const BYTE* const repBase = repIndex < prefixStartIndex ? dictBase : base; in ZSTD_compressBlock_doubleFast_extDict_generic()
659 const BYTE* const repMatch = repBase + repIndex; in ZSTD_compressBlock_doubleFast_extDict_generic()
663 if (((ZSTD_index_overlap_check(prefixStartIndex, repIndex)) in ZSTD_compressBlock_doubleFast_extDict_generic()
[all …]
H A Dzstd_opt.c651 U32 const repIndex = curr - repOffset; in ZSTD_insertBtAndGetAllMatches() local
658 …if ((repIndex >= windowLow) & (ZSTD_readMINMATCH(ip, minMatch) == ZSTD_readMINMATCH(ip - repOffset… in ZSTD_insertBtAndGetAllMatches()
663 dmsBase + repIndex - dmsIndexDelta : in ZSTD_insertBtAndGetAllMatches()
664 dictBase + repIndex; in ZSTD_insertBtAndGetAllMatches()
668 & (ZSTD_index_overlap_check(dictLimit, repIndex)) ) in ZSTD_insertBtAndGetAllMatches()
674 & (ZSTD_index_overlap_check(dictLimit, repIndex)) ) in ZSTD_insertBtAndGetAllMatches()
H A Dzstd_compress_internal.h1421 MEM_STATIC int ZSTD_index_overlap_check(const U32 prefixLowestIndex, const U32 repIndex) { in ZSTD_index_overlap_check() argument
1422 return ((U32)((prefixLowestIndex-1) - repIndex) >= 3); in ZSTD_index_overlap_check()