Searched refs:UTF8_ERROR (Results 1 – 2 of 2) sorted by relevance
79 return ((c & 0xC0) == 0x80) ? (c & 0x3F) : UTF8_ERROR; in cont()131 return utf8->the_index == utf8->the_length ? UTF8_END : UTF8_ERROR; in utf8_decode_next()148 return UTF8_ERROR; in utf8_decode_next()151 return r >= 128 ? r : UTF8_ERROR; in utf8_decode_next()160 return UTF8_ERROR; in utf8_decode_next()163 return r >= 2048 && (r < 55296 || r > 57343) ? r : UTF8_ERROR; in utf8_decode_next()173 return UTF8_ERROR; in utf8_decode_next()176 return r >= 65536 && r <= 1114111 ? r : UTF8_ERROR; in utf8_decode_next()178 return UTF8_ERROR; in utf8_decode_next()
4 #define UTF8_ERROR -2 macro
Completed in 10 milliseconds