Searched refs:lowLimit (Results 1 – 7 of 7) sorted by relevance
/external/lz4/lib/ |
D | lz4hc.c | 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() [all …]
|
D | lz4.c | 513 const BYTE* lowLimit; in LZ4_compress_generic() local 536 lowLimit = (const BYTE*)source; in LZ4_compress_generic() 540 lowLimit = (const BYTE*)source - dictPtr->dictSize; in LZ4_compress_generic() 544 lowLimit = (const BYTE*)source; in LZ4_compress_generic() 579 lowLimit = dictionary; in LZ4_compress_generic() 584 lowLimit = (const BYTE*)source; in LZ4_compress_generic() 596 …while ((ip>anchor) && (match+refDelta > lowLimit) && (unlikely(ip[-1]==match[refDelta-1]))) { ip--… in LZ4_compress_generic() 626 if ((dict==usingExtDict) && (lowLimit==dictionary)) in LZ4_compress_generic() 675 lowLimit = dictionary; in LZ4_compress_generic() 680 lowLimit = (const BYTE*)source; in LZ4_compress_generic() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | RbnfRoundTripTest.java | 176 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/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | RbnfRoundTripTest.java | 172 void doTest(RuleBasedNumberFormat formatter, long lowLimit, in doTest() argument 177 for (long i = lowLimit; i <= highLimit; i += increment) { in doTest() 199 if (lowLimit < 0) { in doTest()
|
/external/icu/icu4c/source/test/intltest/ |
D | itrbnfrt.cpp | 275 double lowLimit, in doTest() argument 282 for (double i = lowLimit; i <= highLimit; i += increment) { in doTest() 319 if (lowLimit < 0) { in doTest()
|
D | itrbnfrt.h | 85 void doTest(const RuleBasedNumberFormat* formatter, double lowLimit, double highLimit);
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/ConstraintSolver/ |
D | btGeneric6DofSpring2Constraint.cpp | 738 btScalar lowLimit; in get_limit_motor_info2() local 742 lowLimit = error > 0 ? limot->m_servoTarget : -SIMD_INFINITY; in get_limit_motor_info2() 747 …lowLimit = error > 0 && limot->m_servoTarget>limot->m_loLimit ? limot->m_servoTarget : limot->m_lo… in get_limit_motor_info2() 750 …mot_fact = getMotorFactor(limot->m_currentPosition, lowLimit, hiLimit, tag_vel, info->fps * limot-… in get_limit_motor_info2()
|