Searched refs:dictStartIndex (Results 1 - 2 of 2) sorted by relevance

/linux-master/lib/zstd/compress/
H A Dzstd_double_fast.c284 const U32 dictStartIndex = dms->window.dictLimit; local
286 const BYTE* const dictStart = dictBase + dictStartIndex;
548 const U32 dictStartIndex = lowLimit; local
553 const BYTE* const dictStart = dictBase + dictStartIndex;
560 if (prefixStartIndex == dictStartIndex)
583 & (offset_1 <= curr+1 - dictStartIndex)) /* note: we are searching at curr+1 */
590 if ((matchLongIndex > dictStartIndex) && (MEM_read64(matchLong) == MEM_read64(ip))) {
601 } else if ((matchIndex > dictStartIndex) && (MEM_read32(match) == MEM_read32(ip))) {
608 if ( (matchIndex3 > dictStartIndex) && (MEM_read64(match3) == MEM_read64(ip+1)) ) {
651 & (offset_2 <= current2 - dictStartIndex))
[all...]
H A Dzstd_fast.c395 const U32 dictStartIndex = dms->window.dictLimit; local
397 const BYTE* const dictStart = dictBase + dictStartIndex;
447 if (dictMatchIndex <= dictStartIndex ||
564 const U32 dictStartIndex = lowLimit; local
565 const BYTE* const dictStart = dictBase + dictStartIndex;
579 if (prefixStartIndex == dictStartIndex)
596 & (offset_1 <= curr+1 - dictStartIndex) ) /* note: we are searching at curr+1 */
605 if ( (matchIndex < dictStartIndex) ||
631 if ( (((U32)((prefixStartIndex-1) - repIndex2) >= 3) & (offset_2 <= curr - dictStartIndex)) /* intentional overflow */

Completed in 127 milliseconds