Lines Matching full:sect
7661 uint32_t secS = 0, secT = 0;
7840 while(secT == 0) {
7841 secT = *(tCE++) & UCOL_SECONDARYMASK;
7844 if(secS == secT) {
7848 secS = 0; secT = 0;
7852 result = (secS < secT) ? UCOL_LESS : UCOL_GREATER;
7884 while(secT == 0 && tCE >= tCEs.buf) {
7886 secT = *(tCE--);
7887 if(isContinuation(secT)) {
7888 while(isContinuation(secT = *(tCE--)))
7896 secT = *(tCE++);
7897 if(!isContinuation(secT)) { /* This means we have finished with this cont */
7903 secT &= UCOL_SECONDARYMASK; /* remove the continuation bit */
7906 if(secS == secT) {
7910 secS = 0; secT = 0;
7914 result = (secS < secT) ? UCOL_LESS : UCOL_GREATER;
7942 while((secT & UCOL_REMOVE_CASE) == 0) {
7944 secT = *(tCE-1);
7945 if(((secT & UCOL_PRIMARYMASK) != 0) || strength > UCOL_PRIMARY) {
7948 secT &= UCOL_TERT_CASE_MASK;
7949 secT ^= caseSwitch;
7951 secT = 0;
7954 secT = 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 ) {
7970 secT = 0;
7978 secT = 0;
7991 while((secT & UCOL_REMOVE_CASE) == 0) {
7992 secT = *(tCE++) & tertiaryMask;
7993 if(!isContinuation(secT)) {
7994 secT ^= caseSwitch;
7996 secT &= UCOL_REMOVE_CASE;
8000 if(secS == secT) {
8004 secS = 0; secT = 0;
8008 result = (secS < secT) ? UCOL_LESS : UCOL_GREATER;
8019 secT = 0;
8039 while(secT == 0 && secT != UCOL_NO_MORE_CES || (isContinuation(secT) && !tInShifted)) {
8040 secT = *(tCE++);
8041 if(isContinuation(secT)) {
8045 } else if(secT > LVT || (secT & UCOL_PRIMARYMASK) == 0) {
8046 secT = UCOL_PRIMARYMASK;
8052 secT &= UCOL_PRIMARYMASK;
8054 if(secS == secT) {
8058 secS = 0; secT = 0;
8062 result = (secS < secT) ? UCOL_LESS : UCOL_GREATER;