Lines Matching refs:prefixLowestIndex
65 const U32 prefixLowestIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog); in ZSTD_compressBlock_doubleFast_noDict_generic() local
66 const BYTE* const prefixLowest = base + prefixLowestIndex; in ZSTD_compressBlock_doubleFast_noDict_generic()
140 if (idxl0 > prefixLowestIndex) { in ZSTD_compressBlock_doubleFast_noDict_generic()
153 if (idxs0 > prefixLowestIndex) { in ZSTD_compressBlock_doubleFast_noDict_generic()
188 if (idxl1 > prefixLowestIndex) { in ZSTD_compressBlock_doubleFast_noDict_generic()
273 const U32 prefixLowestIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog); in ZSTD_compressBlock_doubleFast_dictMatchState_generic() local
274 const BYTE* const prefixLowest = base + prefixLowestIndex; in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
288 const U32 dictIndexDelta = prefixLowestIndex - (U32)(dictEnd - dictBase); in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
320 const BYTE* repMatch = (repIndex < prefixLowestIndex) ? in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
326 if (((U32)((prefixLowestIndex-1) - repIndex) >= 3 /* intentional underflow */) in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
328 const BYTE* repMatchEnd = repIndex < prefixLowestIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
335 if (matchIndexL > prefixLowestIndex) { in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
356 if (matchIndexS > prefixLowestIndex) { in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
386 if (matchIndexL3 > prefixLowestIndex) { in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
408 if (matchIndexS < prefixLowestIndex) { in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
443 const BYTE* repMatch2 = repIndex2 < prefixLowestIndex ? in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
446 if ( ((U32)((prefixLowestIndex-1) - (U32)repIndex2) >= 3 /* intentional overflow */) in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
448 const BYTE* const repEnd2 = repIndex2 < prefixLowestIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_dictMatchState_generic()