HomeSort by relevance Sort by last modified time
    Searched refs:upperLimit (Results 1 - 22 of 22) sorted by null

  /external/icu/icu4c/source/i18n/
collationweights.h 59 * @param upperLimit A collation element weight; the ranges will be filled to cover
62 * lowerLimit<w<upperLimit in lexical order.
65 UBool allocWeights(uint32_t lowerLimit, uint32_t upperLimit, int32_t n);
96 UBool getWeightRanges(uint32_t lowerLimit, uint32_t upperLimit);
collationweights.cpp 209 CollationWeights::getWeightRanges(uint32_t lowerLimit, uint32_t upperLimit) {
211 U_ASSERT(upperLimit != 0);
215 int32_t upperLength=lengthOfWeight(upperLimit);
219 printf("length of upper limit 0x%08lx is %ld\n", upperLimit, upperLength);
224 if(lowerLimit>=upperLimit) {
233 if(lowerLimit==truncateWeight(upperLimit, lowerLength)) {
235 printf("error: lower limit 0x%08lx is a prefix of upper limit 0x%08lx\n", lowerLimit, upperLimit);
240 /* if the upper limit is a prefix of the lower limit then the earlier test lowerLimit>=upperLimit has caught it */
280 weight=upperLimit;
302 // lowerLimit and upperLimit (which are lowerLimit<upperLimit)
    [all...]
  /external/libmpeg2/common/
impeg2_macros.h 39 #define IS_VAL_IN_RANGE(val,upperLimit,lowerLimit) ((val) >= (lowerLimit) && (val) <= (upperLimit))
  /external/opencv3/modules/features2d/src/kaze/
fed.cpp 178 int upperLimit = (int)sqrt(1.0f + number);
181 while (divisor <= upperLimit ) {
  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_resampler.c 147 int upperLimit = 0;
180 upperLimit = (int)(rawAvg + 5 * rawAbsDev + 1); // +1 for ceiling.
186 (rawSkew[i] < upperLimit && rawSkew[i] > lowerLimit)) {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationWeights.java 79 * @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) {
91 if(!getWeightRanges(lowerLimit, upperLimit)) {
287 private boolean getWeightRanges(long lowerLimit, long upperLimit) {
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, lowerLength))
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationWeights.java 77 * @param upperLimit A collation element weight; the ranges will be filled to cover
80 * lowerLimit<w<upperLimit in lexical order.
83 public boolean allocWeights(long lowerLimit, long upperLimit, int n) {
89 if(!getWeightRanges(lowerLimit, upperLimit)) {
285 private boolean getWeightRanges(long lowerLimit, long upperLimit) {
287 assert(upperLimit != 0);
291 int upperLength=lengthOfWeight(upperLimit);
294 // printf("length of upper limit 0x%08lx is %ld\n", upperLimit, upperLength);
298 if(lowerLimit>=upperLimit) {
305 if(lowerLimit==truncateWeight(upperLimit, lowerLength))
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/agc/legacy/
analog_agc.h 77 int32_t upperLimit; // Upper limit for mic energy
analog_agc.c 472 stt->upperLimit = stt->startUpperLimit;
793 stt->upperLimit = stt->startUpperLimit;
911 } else if (stt->Rxx160_LPw32 > stt->upperLimit)
    [all...]
  /frameworks/base/core/java/android/hardware/radio/
RadioManager.java 334 BandDescriptor(int region, int type, int lowerLimit, int upperLimit, int spacing) {
338 mUpperLimit = upperLimit;
462 FmBandDescriptor(int region, int type, int lowerLimit, int upperLimit, int spacing,
464 super(region, type, lowerLimit, upperLimit, spacing);
588 AmBandDescriptor(int region, int type, int lowerLimit, int upperLimit, int spacing,
590 super(region, type, lowerLimit, upperLimit, spacing);
666 BandConfig(int region, int type, int lowerLimit, int upperLimit, int spacing) {
667 mDescriptor = new BandDescriptor(region, type, lowerLimit, upperLimit, spacing);
783 FmBandConfig(int region, int type, int lowerLimit, int upperLimit, int spacing,
785 super(region, type, lowerLimit, upperLimit, spacing)
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
MultiSelectManager.java     [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationTest.java 574 private void checkAllocWeights(CollationWeights cw, long lowerLimit, long upperLimit,
577 if (!cw.allocWeights(lowerLimit, upperLimit, n)) {
580 + Utility.hex(upperLimit) + ","
591 + Utility.hex(upperLimit) + ",0x"
596 if (!(previous < w && w < upperLimit)) {
599 + Utility.hex(upperLimit) + ","
604 + Utility.hex(upperLimit));
614 + Utility.hex(upperLimit) + ","
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationTest.java 570 private void checkAllocWeights(CollationWeights cw, long lowerLimit, long upperLimit,
573 if (!cw.allocWeights(lowerLimit, upperLimit, n)) {
576 + Utility.hex(upperLimit) + ","
587 + Utility.hex(upperLimit) + ",0x"
592 if (!(previous < w && w < upperLimit)) {
595 + Utility.hex(upperLimit) + ","
600 + Utility.hex(upperLimit));
610 + Utility.hex(upperLimit) + ","
    [all...]
  /external/icu/icu4c/source/test/intltest/
collationtest.cpp 82 uint32_t lowerLimit, uint32_t upperLimit, int32_t n,
505 uint32_t lowerLimit, uint32_t upperLimit, int32_t n,
507 if(!cw.allocWeights(lowerLimit, upperLimit, n)) {
509 (long)lowerLimit, (long)upperLimit, (long)n);
519 (long)lowerLimit, (long)upperLimit, (long)n, (long)i);
522 if(!(previous < w && w < upperLimit)) {
525 (long)lowerLimit, (long)upperLimit, (long)n,
526 (long)(i + 1), (long)w, (long)previous, (long)upperLimit);
534 (long)lowerLimit, (long)upperLimit, (long)n,
    [all...]
  /external/aac/libSBRdec/src/
env_dec.cpp 585 #define upperLimit ((FIXP_SGL)35) /* upperLimit actually refers to the _lowest_ noise energy */
591 h_sbr_data->sbrNoiseFloorLevel[i] = fixMin(h_sbr_data->sbrNoiseFloorLevel[i], upperLimit);
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/pmd/pmd/5.1.1/
pmd-5.1.1.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 
  /prebuilts/sdk/tools/jacks/
jack-2.28.RELEASE.jar 

Completed in 4512 milliseconds