Lines Matching defs:dictLimit
428 const U32 dictLimit = ms->window.dictLimit;
429 const BYTE* const dictEnd = dictBase + dictLimit;
430 const BYTE* const prefixStart = base + dictLimit;
484 if (!extDict || (matchIndex+matchLength >= dictLimit)) {
485 assert(matchIndex+matchLength >= dictLimit); /* might be wrong if actually extDict */
491 if (matchIndex+matchLength >= dictLimit)
580 U32 const dictLimit = ms->window.dictLimit;
581 const BYTE* const dictEnd = dictBase + dictLimit;
582 const BYTE* const prefixStart = base + dictLimit;
617 assert(curr >= dictLimit);
618 if (repOffset-1 /* intentional overflow, discards 0 and -1 */ < curr-dictLimit) { /* equivalent to `curr > repIndex >= dictLimit` */
625 } else { /* repIndex < dictLimit || repIndex >= curr */
632 & (((U32)((dictLimit-1) - repIndex) >= 3) ) /* intentional overflow : do not test positions overlapping 2 memory segments */)
638 & ((U32)((dictLimit-1) - repIndex) >= 3) ) /* intentional overflow : do not test positions overlapping 2 memory segments */
661 if ((dictMode == ZSTD_noDict) /*static*/ || (dictMode == ZSTD_dictMatchState) /*static*/ || (matchIndex3 >= dictLimit)) {
695 if ((dictMode == ZSTD_noDict) || (dictMode == ZSTD_dictMatchState) || (matchIndex+matchLength >= dictLimit)) {
696 assert(matchIndex+matchLength >= dictLimit); /* ensure the condition is correct when !extDict */
698 if (matchIndex >= dictLimit) assert(memcmp(match, ip, matchLength) == 0); /* ensure early section of match is equal as expected */
704 if (matchIndex+matchLength >= dictLimit)
1051 const BYTE* const prefixStart = base + ms->window.dictLimit;
1071 (U32)(ip - base), ms->window.dictLimit, ms->nextToUpdate);
1366 assert(ms->window.dictLimit == ms->window.lowLimit); /* no dictionary */
1367 assert(ms->window.dictLimit - ms->nextToUpdate <= 1); /* no prefix (note: intentional overflow, defined as 2-complement) */
1374 ms->window.dictLimit += (U32)srcSize;
1375 ms->window.lowLimit = ms->window.dictLimit;
1376 ms->nextToUpdate = ms->window.dictLimit;
1406 && (ms->window.dictLimit == ms->window.lowLimit) /* no dictionary */
1407 && (curr == ms->window.dictLimit) /* start of frame, nothing already loaded nor skipped */