Searched defs:upperLimit (Results 1 - 10 of 10) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationWeights.java81 * @param upperLimit A collation element weight; the ranges will be filled to cover
84 * lowerLimit<w<upperLimit in lexical order.
87 public boolean allocWeights(long lowerLimit, long upperLimit, int n) { argument
93 if(!getWeightRanges(lowerLimit, upperLimit)) {
289 private boolean getWeightRanges(long lowerLimit, long upperLimit) { argument
291 assert(upperLimit != 0);
295 int upperLength=lengthOfWeight(upperLimit);
298 // printf("length of upper limit 0x%08lx is %ld\n", upperLimit, upperLength);
302 if(lowerLimit>=upperLimit) {
309 if(lowerLimit==truncateWeight(upperLimit, lowerLengt
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationweights.cpp211 CollationWeights::getWeightRanges(uint32_t lowerLimit, uint32_t upperLimit) { argument
213 U_ASSERT(upperLimit != 0);
217 int32_t upperLength=lengthOfWeight(upperLimit);
221 printf("length of upper limit 0x%08lx is %ld\n", upperLimit, upperLength);
226 if(lowerLimit>=upperLimit) {
235 if(lowerLimit==truncateWeight(upperLimit, lowerLength)) {
237 printf("error: lower limit 0x%08lx is a prefix of upper limit 0x%08lx\n", lowerLimit, upperLimit);
242 /* if the upper limit is a prefix of the lower limit then the earlier test lowerLimit>=upperLimit has caught it */
282 weight=upperLimit;
304 // lowerLimit and upperLimit (whic
497 allocWeights(uint32_t lowerLimit, uint32_t upperLimit, int32_t n) argument
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationWeights.java79 * @param upperLimit A collation element weight; the ranges will be filled to cover
82 * lowerLimit<w<upperLimit in lexical order.
85 public boolean allocWeights(long lowerLimit, long upperLimit, int n) { argument
91 if(!getWeightRanges(lowerLimit, upperLimit)) {
287 private boolean getWeightRanges(long lowerLimit, long upperLimit) { argument
289 assert(upperLimit != 0);
293 int upperLength=lengthOfWeight(upperLimit);
296 // printf("length of upper limit 0x%08lx is %ld\n", upperLimit, upperLength);
300 if(lowerLimit>=upperLimit) {
307 if(lowerLimit==truncateWeight(upperLimit, lowerLengt
[all...]
/external/webrtc/webrtc/modules/audio_processing/aec/
H A Daec_resampler.c147 int upperLimit = 0; local
180 upperLimit = (int)(rawAvg + 5 * rawAbsDev + 1); // +1 for ceiling.
186 (rawSkew[i] < upperLimit && rawSkew[i] > lowerLimit)) {
/external/aac/libSBRdec/src/
H A Denv_dec.cpp603 #define upperLimit \ macro
604 ((FIXP_SGL)35) /* upperLimit actually refers to the _lowest_ noise energy */
611 fixMin(h_sbr_data->sbrNoiseFloorLevel[i], upperLimit);
/external/webrtc/webrtc/modules/audio_processing/agc/legacy/
H A Danalog_agc.h77 int32_t upperLimit; // Upper limit for mic energy member in struct:__anon30842
/external/freetype/src/gxvalid/
H A Dgxvjust.c185 FT_Fixed upperLimit; local
196 upperLimit = FT_NEXT_LONG( p );
204 if ( lowerLimit >= upperLimit )
207 " lowerLimit(%d) > upperLimit(%d)\n" ));
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
H A DCollationTest.java557 private void checkAllocWeights(CollationWeights cw, long lowerLimit, long upperLimit, argument
560 if (!cw.allocWeights(lowerLimit, upperLimit, n)) {
563 + Utility.hex(upperLimit) + ","
574 + Utility.hex(upperLimit) + ",0x"
579 if (!(previous < w && w < upperLimit)) {
582 + Utility.hex(upperLimit) + ","
587 + Utility.hex(upperLimit));
597 + Utility.hex(upperLimit) + ","
/external/icu/icu4c/source/test/intltest/
H A Dcollationtest.cpp84 uint32_t lowerLimit, uint32_t upperLimit, int32_t n,
503 uint32_t lowerLimit, uint32_t upperLimit, int32_t n,
505 if(!cw.allocWeights(lowerLimit, upperLimit, n)) {
507 (long)lowerLimit, (long)upperLimit, (long)n);
517 (long)lowerLimit, (long)upperLimit, (long)n, (long)i);
520 if(!(previous < w && w < upperLimit)) {
523 (long)lowerLimit, (long)upperLimit, (long)n,
524 (long)(i + 1), (long)w, (long)previous, (long)upperLimit);
532 (long)lowerLimit, (long)upperLimit, (long)n,
502 checkAllocWeights(CollationWeights &cw, uint32_t lowerLimit, uint32_t upperLimit, int32_t n, int32_t someLength, int32_t minCount) argument
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationTest.java554 private void checkAllocWeights(CollationWeights cw, long lowerLimit, long upperLimit, argument
557 if (!cw.allocWeights(lowerLimit, upperLimit, n)) {
560 + Utility.hex(upperLimit) + ","
571 + Utility.hex(upperLimit) + ",0x"
576 if (!(previous < w && w < upperLimit)) {
579 + Utility.hex(upperLimit) + ","
584 + Utility.hex(upperLimit));
594 + Utility.hex(upperLimit) + ","

Completed in 1220 milliseconds