Home
last modified time | relevance | path

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

/external/libvterm/src/
Dencoding.c3 #define UNICODE_INVALID 0xFFFD macro
50 cp[(*cpi)++] = UNICODE_INVALID; in decode_utf8()
61 cp[(*cpi)++] = UNICODE_INVALID; in decode_utf8()
76 if(data->this_cp < 0x0080) data->this_cp = UNICODE_INVALID; break; in decode_utf8()
78 if(data->this_cp < 0x0800) data->this_cp = UNICODE_INVALID; break; in decode_utf8()
80 if(data->this_cp < 0x10000) data->this_cp = UNICODE_INVALID; break; in decode_utf8()
82 if(data->this_cp < 0x200000) data->this_cp = UNICODE_INVALID; break; in decode_utf8()
84 if(data->this_cp < 0x4000000) data->this_cp = UNICODE_INVALID; break; in decode_utf8()
90 data->this_cp = UNICODE_INVALID; in decode_utf8()
100 cp[(*cpi)++] = UNICODE_INVALID; in decode_utf8()
[all …]