Home
last modified time | relevance | path

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

/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DRbnfRoundTripTest.java195 void doTest(RuleBasedNumberFormat formatter, long lowLimit, in doTest() argument
200 for (long i = lowLimit; i <= highLimit; i += increment) { in doTest()
222 if (lowLimit < 0) { in doTest()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DRbnfRoundTripTest.java192 void doTest(RuleBasedNumberFormat formatter, long lowLimit, in doTest() argument
197 for (long i = lowLimit; i <= highLimit; i += increment) { in doTest()
219 if (lowLimit < 0) { in doTest()
/third_party/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);
/third_party/lz4/lib/
Dlz4hc.c113 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 …]
Dlz4.c869 const BYTE* lowLimit; in LZ4_compress_generic_validated() local
907 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 …]
Dlz4hc.h210 LZ4_u32 lowLimit; /* below that point, no more dict */ member