Home | History | Annotate | Download | only in lib

Lines Matching full:dictlimit

94     U32   dictLimit;        /* below that point, need extDict */
124 hc4->dictLimit = 64 KB;
161 const U32 dictLimit = hc4->dictLimit;
175 if (matchIndex >= dictLimit)
191 const BYTE* vLimit = ip + (dictLimit - matchIndex);
195 mlt += LZ4_count(ip+mlt, base+dictLimit, iLimit);
219 const U32 dictLimit = hc4->dictLimit;
235 if (matchIndex >= dictLimit)
262 const BYTE* vLimit = ip + (dictLimit - matchIndex);
266 mlt += LZ4_count(ip+mlt, base+dictLimit, iHighLimit);
623 ctxPtr->lowLimit = ctxPtr->dictLimit;
624 ctxPtr->dictLimit = (U32)(ctxPtr->end - ctxPtr->base);
626 ctxPtr->base = newBlock - ctxPtr->dictLimit;
628 ctxPtr->nextToUpdate = ctxPtr->dictLimit; /* match referencing will resume from there */
642 size_t dictSize = (size_t)(ctxPtr->end - ctxPtr->base) - ctxPtr->dictLimit;
655 const BYTE* dictEnd = ctxPtr->dictBase + ctxPtr->dictLimit;
660 if (ctxPtr->dictLimit - ctxPtr->lowLimit < 4) ctxPtr->lowLimit = ctxPtr->dictLimit;
683 int prefixSize = (int)(streamPtr->end - (streamPtr->base + streamPtr->dictLimit));
692 streamPtr->dictLimit = endIndex - dictSize;
694 if (streamPtr->nextToUpdate < streamPtr->dictLimit) streamPtr->nextToUpdate = streamPtr->dictLimit;