Home
last modified time | relevance | path

Searched refs:lowLimit (Results 1 – 8 of 8) sorted by relevance

/external/lz4/lib/
Dlz4hc.c106 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() local
151 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() local
206 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 …]
Dlz4.c473 const BYTE* lowLimit; in LZ4_compress_generic() local
495 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 …]
Dlz4hc.h155 uint32_t lowLimit; /* below that point, no more dict */ member
172 unsigned int lowLimit; /* below that point, no more dict */ member
Dlz4opt.h93 …const U32 lowLimit = (ctx->lowLimit + MAX_DISTANCE > current) ? ctx->lowLimit : current - (MAX_DIS… in LZ4HC_BinTree_InsertAndGetAllMatches() local
114 while ((matchIndex < current) && (matchIndex>=lowLimit) && (nbAttempts)) { in LZ4HC_BinTree_InsertAndGetAllMatches()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DRbnfRoundTripTest.java177 void doTest(RuleBasedNumberFormat formatter, long lowLimit, in doTest() argument
182 for (long i = lowLimit; i <= highLimit; i += increment) { in doTest()
204 if (lowLimit < 0) { in doTest()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DRbnfRoundTripTest.java176 void doTest(RuleBasedNumberFormat formatter, long lowLimit, in doTest() argument
181 for (long i = lowLimit; i <= highLimit; i += increment) { in doTest()
203 if (lowLimit < 0) { in doTest()
/external/icu/icu4c/source/test/intltest/
Ditrbnfrt.cpp277 double lowLimit, in doTest() argument
284 for (double i = lowLimit; i <= highLimit; i += increment) { in doTest()
321 if (lowLimit < 0) { in doTest()
Ditrbnfrt.h87 void doTest(const RuleBasedNumberFormat* formatter, double lowLimit, double highLimit);