Lines Matching defs:c2
871 int32_t c2;
874 c2 = s16[nextIndex++];
875 if(c2 > LATIN_MAX) {
876 if(PUNCT_START <= c2 && c2 < PUNCT_LIMIT) {
877 c2 = c2 - PUNCT_START + LATIN_LIMIT; // 2000..203F -> 0180..01BF
878 } else if(c2 == 0xfffe || c2 == 0xffff) {
879 c2 = -1; // U+FFFE & U+FFFF cannot occur in contractions.
885 c2 = s8[nextIndex++];
886 if(c2 > 0x7f) {
888 if(c2 <= 0xc5 && 0xc2 <= c2 && nextIndex != sLength &&
890 c2 = ((c2 - 0xc2) << 6) + t; // 0080..017F
895 if(c2 == 0xe2 && s8[nextIndex] == 0x80 &&
897 c2 = (LATIN_LIMIT - 0x80) + t; // 2000..203F -> 0180..01BF
898 } else if(c2 == 0xef && s8[nextIndex] == 0xbf &&
900 c2 = -1; // U+FFFE & U+FFFF cannot occur in contractions.
911 if(c2 == 0 && sLength < 0) {
913 c2 = -1;
924 } while(x < c2);
925 if(x == c2) {