Lines Matching full:secs
7661 uint32_t secS = 0, secT = 0;
7836 while (secS == 0) {
7837 secS = *(sCE++) & UCOL_SECONDARYMASK;
7844 if(secS == secT) {
7845 if(secS == UCOL_NO_MORE_CES_SECONDARY) {
7848 secS = 0; secT = 0;
7852 result = (secS < secT) ? UCOL_LESS : UCOL_GREATER;
7862 while (secS == 0 && sCE >= sCEs.buf) {
7864 secS = *(sCE--);
7865 if(isContinuation(secS)) {
7866 while(isContinuation(secS = *(sCE--)))
7868 /* after this, secS has the start of continuation, and sCEs points before that */
7874 secS = *(sCE++);
7875 if(!isContinuation(secS)) { /* This means we have finished with this cont */
7881 secS &= UCOL_SECONDARYMASK; /* remove the continuation bit */
7890 /* after this, secS has the start of continuation, and sCEs points before that */
7906 if(secS == secT) {
7907 if(secS == UCOL_NO_MORE_CES_SECONDARY || (sCE < sCEs.buf && tCE < tCEs.buf)) {
7910 secS = 0; secT = 0;
7914 result = (secS < secT) ? UCOL_LESS : UCOL_GREATER;
7926 while((secS & UCOL_REMOVE_CASE) == 0) {
7928 secS =*(sCE-1);
7929 if(((secS & UCOL_PRIMARYMASK) != 0) || strength > UCOL_PRIMARY) {
7932 secS &= UCOL_TERT_CASE_MASK;
7933 secS ^= caseSwitch;
7935 secS = 0;
7938 secS = 0;
7958 if((secS & UCOL_CASE_BIT_MASK) < (secT & UCOL_CASE_BIT_MASK)) {
7961 } else if((secS & UCOL_CASE_BIT_MASK) > (secT & UCOL_CASE_BIT_MASK)) {
7966 if((secS & UCOL_REMOVE_CASE) == UCOL_NO_MORE_CES_TERTIARY || (secT & UCOL_REMOVE_CASE) == UCOL_NO_MORE_CES_TERTIARY ) {
7969 secS = 0;
7977 secS = 0;
7982 while((secS & UCOL_REMOVE_CASE) == 0) {
7983 secS = *(sCE++) & tertiaryMask;
7984 if(!isContinuation(secS)) {
7985 secS ^= caseSwitch;
7987 secS &= UCOL_REMOVE_CASE;
8000 if(secS == secT) {
8001 if((secS & UCOL_REMOVE_CASE) == 1) {
8004 secS = 0; secT = 0;
8008 result = (secS < secT) ? UCOL_LESS : UCOL_GREATER;
8018 secS = 0;
8023 while(secS == 0 && secS != UCOL_NO_MORE_CES || (isContinuation(secS) && !sInShifted)) {
8024 secS = *(sCE++);
8025 if(isContinuation(secS)) {
8029 } else if(secS > LVT || (secS & UCOL_PRIMARYMASK) == 0) { /* non continuation */
8030 secS = UCOL_PRIMARYMASK;
8036 secS &= UCOL_PRIMARYMASK;
8054 if(secS == secT) {
8055 if(secS == UCOL_NO_MORE_CES_PRIMARY) {
8058 secS = 0; secT = 0;
8062 result = (secS < secT) ? UCOL_LESS : UCOL_GREATER;