Searched refs:lowLimit (Results 1 – 8 of 8) sorted by relevance
106 hc4->lowLimit = 64 KB; in LZ4HC_init()142 …const U32 lowLimit = (hc4->lowLimit + 64 KB > (U32)(ip-base)) ? hc4->lowLimit : (U32)(ip - base) -… in LZ4HC_InsertAndFindBestMatch() local151 while ((matchIndex>=lowLimit) && (nbAttempts)) { in LZ4HC_InsertAndFindBestMatch()195 …const U32 lowLimit = (hc4->lowLimit + 64 KB > (U32)(ip-base)) ? hc4->lowLimit : (U32)(ip - base) -… in LZ4HC_InsertAndGetWiderMatch() local206 while ((matchIndex>=lowLimit) && (nbAttempts)) { in LZ4HC_InsertAndGetWiderMatch()239 …while ((ip+back > iLowLimit) && (matchIndex+back > lowLimit) && (ip[back-1] == matchPtr[back-1])) … in LZ4HC_InsertAndGetWiderMatch()595 ctxPtr->lowLimit = ctxPtr->dictLimit; in LZ4HC_setExternalDict()623 const BYTE* const dictBegin = ctxPtr->dictBase + ctxPtr->lowLimit; in LZ4_compressHC_continue_generic()627 ctxPtr->lowLimit = (U32)(sourceEnd - ctxPtr->dictBase); in LZ4_compressHC_continue_generic()628 if (ctxPtr->dictLimit - ctxPtr->lowLimit < 4) ctxPtr->lowLimit = ctxPtr->dictLimit; in LZ4_compressHC_continue_generic()[all …]
473 const BYTE* lowLimit; in LZ4_compress_generic() local495 lowLimit = (const BYTE*)source; in LZ4_compress_generic()499 lowLimit = (const BYTE*)source - cctx->dictSize; in LZ4_compress_generic()503 lowLimit = (const BYTE*)source; in LZ4_compress_generic()535 lowLimit = dictionary; in LZ4_compress_generic()538 lowLimit = (const BYTE*)source; in LZ4_compress_generic()549 …while (((ip>anchor) & (match+refDelta > lowLimit)) && (unlikely(ip[-1]==match[refDelta-1]))) { ip-… in LZ4_compress_generic()577 if ((dict==usingExtDict) && (lowLimit==dictionary)) { in LZ4_compress_generic()621 lowLimit = dictionary; in LZ4_compress_generic()624 lowLimit = (const BYTE*)source; in LZ4_compress_generic()[all …]
155 uint32_t lowLimit; /* below that point, no more dict */ member172 unsigned int lowLimit; /* below that point, no more dict */ member
93 …const U32 lowLimit = (ctx->lowLimit + MAX_DISTANCE > current) ? ctx->lowLimit : current - (MAX_DIS… in LZ4HC_BinTree_InsertAndGetAllMatches() local114 while ((matchIndex < current) && (matchIndex>=lowLimit) && (nbAttempts)) { in LZ4HC_BinTree_InsertAndGetAllMatches()
177 void doTest(RuleBasedNumberFormat formatter, long lowLimit, in doTest() argument182 for (long i = lowLimit; i <= highLimit; i += increment) { in doTest()204 if (lowLimit < 0) { in doTest()
176 void doTest(RuleBasedNumberFormat formatter, long lowLimit, in doTest() argument181 for (long i = lowLimit; i <= highLimit; i += increment) { in doTest()203 if (lowLimit < 0) { in doTest()
277 double lowLimit, in doTest() argument284 for (double i = lowLimit; i <= highLimit; i += increment) { in doTest()321 if (lowLimit < 0) { in doTest()
87 void doTest(const RuleBasedNumberFormat* formatter, double lowLimit, double highLimit);