Lines Matching refs:dictLimit

460     const U32 dictLimit = ms->window.dictLimit;  in ZSTD_insertBt1()  local
461 const BYTE* const dictEnd = dictBase + dictLimit; in ZSTD_insertBt1()
462 const BYTE* const prefixStart = base + dictLimit; in ZSTD_insertBt1()
516 if (!extDict || (matchIndex+matchLength >= dictLimit)) { in ZSTD_insertBt1()
517 assert(matchIndex+matchLength >= dictLimit); /* might be wrong if actually extDict */ in ZSTD_insertBt1()
523 if (matchIndex+matchLength >= dictLimit) in ZSTD_insertBt1()
616 U32 const dictLimit = ms->window.dictLimit; in ZSTD_insertBtAndGetAllMatches() local
617 const BYTE* const dictEnd = dictBase + dictLimit; in ZSTD_insertBtAndGetAllMatches()
618 const BYTE* const prefixStart = base + dictLimit; in ZSTD_insertBtAndGetAllMatches()
653 assert(curr >= dictLimit); in ZSTD_insertBtAndGetAllMatches()
654 …if (repOffset-1 /* intentional overflow, discards 0 and -1 */ < curr-dictLimit) { /* equivalent t… in ZSTD_insertBtAndGetAllMatches()
668 & (ZSTD_index_overlap_check(dictLimit, repIndex)) ) in ZSTD_insertBtAndGetAllMatches()
674 & (ZSTD_index_overlap_check(dictLimit, repIndex)) ) in ZSTD_insertBtAndGetAllMatches()
697 …noDict) /*static*/ || (dictMode == ZSTD_dictMatchState) /*static*/ || (matchIndex3 >= dictLimit)) { in ZSTD_insertBtAndGetAllMatches()
731 …de == ZSTD_noDict) || (dictMode == ZSTD_dictMatchState) || (matchIndex+matchLength >= dictLimit)) { in ZSTD_insertBtAndGetAllMatches()
732 … assert(matchIndex+matchLength >= dictLimit); /* ensure the condition is correct when !extDict */ in ZSTD_insertBtAndGetAllMatches()
734 …if (matchIndex >= dictLimit) assert(memcmp(match, ip, matchLength) == 0); /* ensure early section… in ZSTD_insertBtAndGetAllMatches()
740 if (matchIndex+matchLength >= dictLimit) in ZSTD_insertBtAndGetAllMatches()
1092 const BYTE* const prefixStart = base + ms->window.dictLimit; in ZSTD_compressBlock_opt_generic()
1114 (U32)(ip - base), ms->window.dictLimit, ms->nextToUpdate); in ZSTD_compressBlock_opt_generic()
1496 assert(ms->window.dictLimit == ms->window.lowLimit); /* no dictionary */ in ZSTD_initStats_ultra()
1497 …assert(ms->window.dictLimit - ms->nextToUpdate <= 1); /* no prefix (note: intentional overflow, d… in ZSTD_initStats_ultra()
1504 ms->window.dictLimit += (U32)srcSize; in ZSTD_initStats_ultra()
1505 ms->window.lowLimit = ms->window.dictLimit; in ZSTD_initStats_ultra()
1506 ms->nextToUpdate = ms->window.dictLimit; in ZSTD_initStats_ultra()
1536 && (ms->window.dictLimit == ms->window.lowLimit) /* no dictionary */ in ZSTD_compressBlock_btultra2()
1537 && (curr == ms->window.dictLimit) /* start of frame, nothing already loaded nor skipped */ in ZSTD_compressBlock_btultra2()