Searched refs:prefixLowestIndex (Results 1 – 3 of 3) sorted by relevance
121 const BYTE* const prefixLowest = base + prefixLowestIndex; in ZSTD_compressBlock_doubleFast_noDict_generic()261 if ((idxl1 > prefixLowestIndex) && (MEM_read64(matchl1) == MEM_read64(ip1))) { in ZSTD_compressBlock_doubleFast_noDict_generic()346 const BYTE* const prefixLowest = base + prefixLowestIndex; in ZSTD_compressBlock_doubleFast_dictMatchState_generic()359 const U32 dictIndexDelta = prefixLowestIndex - (U32)(dictEnd - dictBase); in ZSTD_compressBlock_doubleFast_dictMatchState_generic()402 const BYTE* repMatch = (repIndex < prefixLowestIndex) ? 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()436 if (matchIndexS > prefixLowestIndex) { in ZSTD_compressBlock_doubleFast_dictMatchState_generic()487 if (matchIndexS < prefixLowestIndex) { in ZSTD_compressBlock_doubleFast_dictMatchState_generic()522 const BYTE* repMatch2 = repIndex2 < prefixLowestIndex ? in ZSTD_compressBlock_doubleFast_dictMatchState_generic()[all …]
1530 const U32 prefixLowestIndex = ms->window.dictLimit; in ZSTD_compressBlock_lazy_generic() local1531 const BYTE* const prefixLowest = base + prefixLowestIndex; in ZSTD_compressBlock_lazy_generic()1547 prefixLowestIndex - (U32)(dictEnd - dictBase) : in ZSTD_compressBlock_lazy_generic()1591 && repIndex < prefixLowestIndex) ? in ZSTD_compressBlock_lazy_generic()1594 if ((ZSTD_index_overlap_check(prefixLowestIndex, repIndex)) in ZSTD_compressBlock_lazy_generic()1643 const BYTE* repMatch = repIndex < prefixLowestIndex ? in ZSTD_compressBlock_lazy_generic()1646 if ((ZSTD_index_overlap_check(prefixLowestIndex, repIndex)) in ZSTD_compressBlock_lazy_generic()1679 const BYTE* repMatch = repIndex < prefixLowestIndex ? in ZSTD_compressBlock_lazy_generic()1682 if ((ZSTD_index_overlap_check(prefixLowestIndex, repIndex)) in ZSTD_compressBlock_lazy_generic()1741 const BYTE* repMatch = repIndex < prefixLowestIndex ? in ZSTD_compressBlock_lazy_generic()[all …]
1421 MEM_STATIC int ZSTD_index_overlap_check(const U32 prefixLowestIndex, const U32 repIndex) { in ZSTD_index_overlap_check() argument1422 return ((U32)((prefixLowestIndex-1) - repIndex) >= 3); in ZSTD_index_overlap_check()