Home | History | Annotate | Download | only in i18n

Lines Matching full:upperlimit

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;
300 /* reduce or remove the lower ranges that go beyond upperLimit */
470 CollationWeights::allocWeights(uint32_t lowerLimit, uint32_t upperLimit, int32_t n) {
475 if(!getWeightRanges(lowerLimit, upperLimit)) {