Lines Matching refs:utf8
1086 uint8_t utf8 = CheckUtfBytes(bytes, &errorKind); in CheckUtfString() local
1089 " string: '%s'", errorKind, utf8, bytes); in CheckUtfString()
1099 uint8_t utf8 = *(bytes++); in CheckUtfBytes() local
1101 switch (utf8 >> 4) { in CheckUtfBytes()
1118 return utf8; in CheckUtfBytes()
1121 if ((utf8 & 0x08) == 0) { in CheckUtfBytes()
1124 utf8 = *(bytes++); in CheckUtfBytes()
1125 if ((utf8 & 0xc0) != 0x80) { in CheckUtfBytes()
1127 return utf8; in CheckUtfBytes()
1131 return utf8; in CheckUtfBytes()
1138 utf8 = *(bytes++); in CheckUtfBytes()
1139 if ((utf8 & 0xc0) != 0x80) { in CheckUtfBytes()
1141 return utf8; in CheckUtfBytes()
1149 utf8 = *(bytes++); in CheckUtfBytes()
1150 if ((utf8 & 0xc0) != 0x80) { in CheckUtfBytes()
1152 return utf8; in CheckUtfBytes()