Home | History | Annotate | Download | only in i18n

Lines Matching defs:pri

460     uint32_t pri = 0;
471 U_ASSERT(pri <= CollationFastLatin::MAX_LONG);
474 result.setCharAt(group, (UChar)((pri << 4) | lastGroupByte));
483 if(pri == 0) {
484 pri = CollationFastLatin::MIN_LONG;
485 } else if(pri < CollationFastLatin::MAX_LONG) {
486 pri += CollationFastLatin::LONG_INC;
495 if(pri < CollationFastLatin::MIN_SHORT) {
496 pri = CollationFastLatin::MIN_SHORT;
497 } else if(pri < (CollationFastLatin::MAX_SHORT - CollationFastLatin::SHORT_INC)) {
499 pri += CollationFastLatin::SHORT_INC;
517 if(pri == 0) {
562 if(CollationFastLatin::MIN_LONG <= pri && pri <= CollationFastLatin::MAX_LONG) {
564 miniCEs[i] = (uint16_t)(pri | ter);
566 miniCEs[i] = (uint16_t)(pri | sec | ter);
570 printf("last mini primary: %04x\n", pri);