Home | History | Annotate | Download | only in i18n

Lines Matching refs:secS

7392     uint32_t secS = 0, secT = 0;
7567 while (secS == 0) {
7568 secS = *(sCE++) & UCOL_SECONDARYMASK;
7575 if(secS == secT) {
7576 if(secS == UCOL_NO_MORE_CES_SECONDARY) {
7579 secS = 0; secT = 0;
7583 result = (secS < secT) ? UCOL_LESS : UCOL_GREATER;
7593 while (secS == 0 && sCE >= sCEs.buf) {
7595 secS = *(sCE--);
7596 if(isContinuation(secS)) {
7597 while(isContinuation(secS = *(sCE--)))
7599 /* after this, secS has the start of continuation, and sCEs points before that */
7605 secS = *(sCE++);
7606 if(!isContinuation(secS)) { /* This means we have finished with this cont */
7612 secS &= UCOL_SECONDARYMASK; /* remove the continuation bit */
7621 /* after this, secS has the start of continuation, and sCEs points before that */
7637 if(secS == secT) {
7638 if(secS == UCOL_NO_MORE_CES_SECONDARY || (sCE < sCEs.buf && tCE < tCEs.buf)) {
7641 secS = 0; secT = 0;
7645 result = (secS < secT) ? UCOL_LESS : UCOL_GREATER;
7657 while((secS & UCOL_REMOVE_CASE) == 0) {
7659 secS =*(sCE-1);
7660 if(((secS & UCOL_PRIMARYMASK) != 0) || strength > UCOL_PRIMARY) {
7663 secS &= UCOL_TERT_CASE_MASK;
7664 secS ^= caseSwitch;
7666 secS = 0;
7669 secS = 0;
7689 if((secS & UCOL_CASE_BIT_MASK) < (secT & UCOL_CASE_BIT_MASK)) {
7692 } else if((secS & UCOL_CASE_BIT_MASK) > (secT & UCOL_CASE_BIT_MASK)) {
7697 if((secS & UCOL_REMOVE_CASE) == UCOL_NO_MORE_CES_TERTIARY || (secT & UCOL_REMOVE_CASE) == UCOL_NO_MORE_CES_TERTIARY ) {
7700 secS = 0;
7708 secS = 0;
7713 while((secS & UCOL_REMOVE_CASE) == 0) {
7714 secS = *(sCE++) & tertiaryMask;
7715 if(!isContinuation(secS)) {
7716 secS ^= caseSwitch;
7718 secS &= UCOL_REMOVE_CASE;
7731 if(secS == secT) {
7732 if((secS & UCOL_REMOVE_CASE) == 1) {
7735 secS = 0; secT = 0;
7739 result = (secS < secT) ? UCOL_LESS : UCOL_GREATER;
7749 secS = 0;
7754 while(secS == 0 && secS != UCOL_NO_MORE_CES || (isContinuation(secS) && !sInShifted)) {
7755 secS = *(sCE++);
7756 if(isContinuation(secS)) {
7760 } else if(secS > LVT || (secS & UCOL_PRIMARYMASK) == 0) { /* non continuation */
7761 secS = UCOL_PRIMARYMASK;
7767 secS &= UCOL_PRIMARYMASK;
7785 if(secS == secT) {
7786 if(secS == UCOL_NO_MORE_CES_PRIMARY) {
7789 secS = 0; secT = 0;
7793 result = (secS < secT) ? UCOL_LESS : UCOL_GREATER;