Home | History | Annotate | Download | only in i18n

Lines Matching refs:lowerLimit

209 CollationWeights::getWeightRanges(uint32_t lowerLimit, uint32_t upperLimit) {
210 U_ASSERT(lowerLimit != 0);
214 int32_t lowerLength=lengthOfWeight(lowerLimit);
218 printf("length of lower limit 0x%08lx is %ld\n", lowerLimit, lowerLength);
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 */
261 uint32_t weight=lowerLimit;
470 CollationWeights::allocWeights(uint32_t lowerLimit, uint32_t upperLimit, int32_t n) {
475 if(!getWeightRanges(lowerLimit, upperLimit)) {