Home
last modified time | relevance | path

Searched refs:prefixLowestIndex (Results 1 – 2 of 2) sorted by relevance

/linux-6.1.9/lib/zstd/compress/
Dzstd_double_fast.c67 const U32 prefixLowestIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog); in ZSTD_compressBlock_doubleFast_generic() local
68 const BYTE* const prefixLowest = base + prefixLowestIndex; in ZSTD_compressBlock_doubleFast_generic()
91 prefixLowestIndex - (U32)(dictEnd - dictBase) : in ZSTD_compressBlock_doubleFast_generic()
139 && repIndex < prefixLowestIndex) ? in ZSTD_compressBlock_doubleFast_generic()
146 && ((U32)((prefixLowestIndex-1) - repIndex) >= 3 /* intentional underflow */) in ZSTD_compressBlock_doubleFast_generic()
148 const BYTE* repMatchEnd = repIndex < prefixLowestIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_generic()
164 if (matchIndexL > prefixLowestIndex) { in ZSTD_compressBlock_doubleFast_generic()
185 if (matchIndexS > prefixLowestIndex) { in ZSTD_compressBlock_doubleFast_generic()
215 if (matchIndexL3 > prefixLowestIndex) { in ZSTD_compressBlock_doubleFast_generic()
237 if (dictMode == ZSTD_dictMatchState && matchIndexS < prefixLowestIndex) { in ZSTD_compressBlock_doubleFast_generic()
[all …]
Dzstd_lazy.c870 const U32 prefixLowestIndex = ms->window.dictLimit; in ZSTD_compressBlock_lazy_generic() local
871 const BYTE* const prefixLowest = base + prefixLowestIndex; in ZSTD_compressBlock_lazy_generic()
914 prefixLowestIndex - (U32)(dictEnd - dictBase) : in ZSTD_compressBlock_lazy_generic()
954 && repIndex < prefixLowestIndex) ? in ZSTD_compressBlock_lazy_generic()
957 if (((U32)((prefixLowestIndex-1) - repIndex) >= 3 /* intentional underflow */) in ZSTD_compressBlock_lazy_generic()
959 const BYTE* repMatchEnd = repIndex < prefixLowestIndex ? dictEnd : iend; in ZSTD_compressBlock_lazy_generic()
996 const BYTE* repMatch = repIndex < prefixLowestIndex ? in ZSTD_compressBlock_lazy_generic()
999 if (((U32)((prefixLowestIndex-1) - repIndex) >= 3 /* intentional underflow */) in ZSTD_compressBlock_lazy_generic()
1001 const BYTE* repMatchEnd = repIndex < prefixLowestIndex ? dictEnd : iend; in ZSTD_compressBlock_lazy_generic()
1031 const BYTE* repMatch = repIndex < prefixLowestIndex ? in ZSTD_compressBlock_lazy_generic()
[all …]