Lines Matching refs:lowLimit
70 hc4->lowLimit = 64 * KB; in LZ4HC_init()
111 const U32 lowLimit = (hc4->lowLimit + 64 * KB > (U32)(ip - base)) in LZ4HC_InsertAndFindBestMatch() local
112 ? hc4->lowLimit in LZ4HC_InsertAndFindBestMatch()
122 while ((matchIndex >= lowLimit) in LZ4HC_InsertAndFindBestMatch()
183 const U32 lowLimit = (hc4->lowLimit + 64 * KB > (U32)(ip - base)) in LZ4HC_InsertAndGetWiderMatch() local
184 ? hc4->lowLimit in LZ4HC_InsertAndGetWiderMatch()
195 while ((matchIndex >= lowLimit) in LZ4HC_InsertAndGetWiderMatch()
242 && (matchIndex + back > lowLimit) in LZ4HC_InsertAndGetWiderMatch()
658 ctxPtr->lowLimit = ctxPtr->dictLimit; in LZ4HC_setExternalDict()
698 const BYTE * const dictBegin = ctxPtr->dictBase + ctxPtr->lowLimit; in LZ4_compressHC_continue_generic()
705 ctxPtr->lowLimit = (U32)(sourceEnd - ctxPtr->dictBase); 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()
758 streamPtr->lowLimit = endIndex - dictSize; in LZ4_saveDictHC()