Lines Matching refs:dictLimit
69 hc4->dictLimit = 64 * KB; in LZ4HC_init()
110 const U32 dictLimit = hc4->dictLimit; in LZ4HC_InsertAndFindBestMatch() local
125 if (matchIndex >= dictLimit) { in LZ4HC_InsertAndFindBestMatch()
144 + (dictLimit - matchIndex); in LZ4HC_InsertAndFindBestMatch()
153 base + dictLimit, in LZ4HC_InsertAndFindBestMatch()
181 const U32 dictLimit = hc4->dictLimit; in LZ4HC_InsertAndGetWiderMatch() local
182 const BYTE * const lowPrefixPtr = base + dictLimit; in LZ4HC_InsertAndGetWiderMatch()
198 if (matchIndex >= dictLimit) { in LZ4HC_InsertAndGetWiderMatch()
230 const BYTE *vLimit = ip + (dictLimit - matchIndex); in LZ4HC_InsertAndGetWiderMatch()
239 mlt += LZ4_count(ip + mlt, base + dictLimit, in LZ4HC_InsertAndGetWiderMatch()
658 ctxPtr->lowLimit = ctxPtr->dictLimit; in LZ4HC_setExternalDict()
659 ctxPtr->dictLimit = (U32)(ctxPtr->end - ctxPtr->base); in LZ4HC_setExternalDict()
661 ctxPtr->base = newBlock - ctxPtr->dictLimit; in LZ4HC_setExternalDict()
664 ctxPtr->nextToUpdate = ctxPtr->dictLimit; in LZ4HC_setExternalDict()
684 - ctxPtr->dictLimit; in LZ4_compressHC_continue_generic()
699 const BYTE * const dictEnd = ctxPtr->dictBase + ctxPtr->dictLimit; in LZ4_compressHC_continue_generic()
707 if (ctxPtr->dictLimit - ctxPtr->lowLimit < 4) in LZ4_compressHC_continue_generic()
708 ctxPtr->lowLimit = ctxPtr->dictLimit; in LZ4_compressHC_continue_generic()
741 - (streamPtr->base + streamPtr->dictLimit)); in LZ4_saveDictHC()
757 streamPtr->dictLimit = endIndex - dictSize; in LZ4_saveDictHC()
760 if (streamPtr->nextToUpdate < streamPtr->dictLimit) in LZ4_saveDictHC()
761 streamPtr->nextToUpdate = streamPtr->dictLimit; in LZ4_saveDictHC()