Home
last modified time | relevance | path

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

/external/zstd/lib/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.c868 const U32 prefixLowestIndex = ms->window.dictLimit; in ZSTD_compressBlock_lazy_generic() local
869 const BYTE* const prefixLowest = base + prefixLowestIndex; in ZSTD_compressBlock_lazy_generic()
912 prefixLowestIndex - (U32)(dictEnd - dictBase) : in ZSTD_compressBlock_lazy_generic()
952 && repIndex < prefixLowestIndex) ? in ZSTD_compressBlock_lazy_generic()
955 if (((U32)((prefixLowestIndex-1) - repIndex) >= 3 /* intentional underflow */) in ZSTD_compressBlock_lazy_generic()
957 const BYTE* repMatchEnd = repIndex < prefixLowestIndex ? dictEnd : iend; in ZSTD_compressBlock_lazy_generic()
994 const BYTE* repMatch = repIndex < prefixLowestIndex ? in ZSTD_compressBlock_lazy_generic()
997 if (((U32)((prefixLowestIndex-1) - repIndex) >= 3 /* intentional underflow */) in ZSTD_compressBlock_lazy_generic()
999 const BYTE* repMatchEnd = repIndex < prefixLowestIndex ? dictEnd : iend; in ZSTD_compressBlock_lazy_generic()
1029 const BYTE* repMatch = repIndex < prefixLowestIndex ? in ZSTD_compressBlock_lazy_generic()
[all …]