Lines Matching refs:lowLimit
95 U32 lowLimit; /* below that point, no more dict */ member
125 hc4->lowLimit = 64 KB; in LZ4HC_init()
162 …const U32 lowLimit = (hc4->lowLimit + 64 KB > (U32)(ip-base)) ? hc4->lowLimit : (U32)(ip - base) -… in LZ4HC_InsertAndFindBestMatch() local
172 while ((matchIndex>=lowLimit) && (nbAttempts)) in LZ4HC_InsertAndFindBestMatch()
220 …const U32 lowLimit = (hc4->lowLimit + 64 KB > (U32)(ip-base)) ? hc4->lowLimit : (U32)(ip - base) -… in LZ4HC_InsertAndGetWiderMatch() local
232 while ((matchIndex>=lowLimit) && (nbAttempts)) in LZ4HC_InsertAndGetWiderMatch()
267 …while ((ip+back > iLowLimit) && (matchIndex+back > lowLimit) && (ip[back-1] == match[back-1])) bac… in LZ4HC_InsertAndGetWiderMatch()
623 ctxPtr->lowLimit = ctxPtr->dictLimit; in LZ4HC_setExternalDict()
654 const BYTE* dictBegin = ctxPtr->dictBase + ctxPtr->lowLimit; in LZ4_compressHC_continue_generic()
659 ctxPtr->lowLimit = (U32)(sourceEnd - ctxPtr->dictBase); in LZ4_compressHC_continue_generic()
660 if (ctxPtr->dictLimit - ctxPtr->lowLimit < 4) ctxPtr->lowLimit = ctxPtr->dictLimit; in LZ4_compressHC_continue_generic()
693 streamPtr->lowLimit = endIndex - dictSize; in LZ4_saveDictHC()