Home
last modified time | relevance | path

Searched refs:UTF8_ERROR (Results 1 – 3 of 3) sorted by relevance

/PHP-5.3/ext/json/
H A Dutf8_decode.c79 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()
H A Dutf8_decode.h4 #define UTF8_ERROR -2 macro
H A Dutf8_to_utf16.c43 return (c == UTF8_END) ? the_index : UTF8_ERROR; in utf8_to_utf16()

Completed in 11 milliseconds