Searched refs:lowLimit (Results 1 – 7 of 7) sorted by relevance
195 void doTest(RuleBasedNumberFormat formatter, long lowLimit, in doTest() argument200 for (long i = lowLimit; i <= highLimit; i += increment) { in doTest()222 if (lowLimit < 0) { in doTest()
192 void doTest(RuleBasedNumberFormat formatter, long lowLimit, in doTest() argument197 for (long i = lowLimit; i <= highLimit; i += increment) { in doTest()219 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);
113 hc4->lowLimit = (U32) startingOffset; in LZ4HC_init_internal()257 …const U32 lowestMatchIndex = (hc4->lowLimit + (LZ4_DISTANCE_MAX + 1) > ipIndex) ? hc4->lowLimit : … in LZ4HC_InsertAndGetWiderMatch()298 const BYTE* const dictStart = dictBase + hc4->lowLimit; in LZ4HC_InsertAndGetWiderMatch()354 const BYTE* const dictStart = dictBase + hc4->lowLimit; in LZ4HC_InsertAndGetWiderMatch()364 … if (!extDict && matchPtr - backLength == lowPrefixPtr && hc4->lowLimit < dictLimit) { in LZ4HC_InsertAndGetWiderMatch()887 const size_t position = (size_t)(ctx->end - ctx->base) - ctx->lowLimit; in LZ4HC_compress_generic_dictCtx()1090 ctxPtr->lowLimit = ctxPtr->dictLimit; in LZ4HC_setExternalDict()1127 const BYTE* const dictBegin = ctxPtr->dictBase + ctxPtr->lowLimit; in LZ4_compressHC_continue_generic()1131 ctxPtr->lowLimit = (U32)(sourceEnd - ctxPtr->dictBase); in LZ4_compressHC_continue_generic()1132 if (ctxPtr->dictLimit - ctxPtr->lowLimit < 4) ctxPtr->lowLimit = ctxPtr->dictLimit; in LZ4_compressHC_continue_generic()[all …]
869 const BYTE* lowLimit; in LZ4_compress_generic_validated() local907 lowLimit = (const BYTE*)source - (dictDirective == withPrefix64k ? dictSize : 0); in LZ4_compress_generic_validated()979 lowLimit = dictionary; in LZ4_compress_generic_validated()982 lowLimit = (const BYTE*)source; in LZ4_compress_generic_validated()989 lowLimit = dictionary; in LZ4_compress_generic_validated()992 lowLimit = (const BYTE*)source; in LZ4_compress_generic_validated()1019 … while (((ip>anchor) & (match > lowLimit)) && (unlikely(ip[-1]==match[-1]))) { ip--; match--; } in LZ4_compress_generic_validated()1079 && (lowLimit==dictionary) /* match within extDict */ ) { in LZ4_compress_generic_validated()1168 lowLimit = dictionary; /* required for match length counter */ in LZ4_compress_generic_validated()1172 lowLimit = (const BYTE*)source; /* required for match length counter */ in LZ4_compress_generic_validated()[all …]
210 LZ4_u32 lowLimit; /* below that point, no more dict */ member