Lines Matching refs:xc0
87 } else if((*p & 0xe0) == 0xc0) {
89 if((p[1] & 0xc0) != 0x80) return -3;
96 if( ((p[1] & 0xc0) != 0x80)
97 || ((p[2] & 0xc0) != 0x80) ) return -3;
105 if( ((p[1] & 0xc0) != 0x80)
106 || ((p[2] & 0xc0) != 0x80)
107 || ((p[3] & 0xc0) != 0x80) ) return -3;
116 if( ((p[1] & 0xc0) != 0x80)
117 || ((p[2] & 0xc0) != 0x80)
118 || ((p[3] & 0xc0) != 0x80)
119 || ((p[4] & 0xc0) != 0x80) ) return -3;
129 if( ((p[1] & 0xc0) != 0x80)
130 || ((p[2] & 0xc0) != 0x80)
131 || ((p[3] & 0xc0) != 0x80)
132 || ((p[4] & 0xc0) != 0x80)
133 || ((p[5] & 0xc0) != 0x80) ) return -3;
165 *str++ = (unsigned char)(((value >> 6) & 0x1f) | 0xc0);