Searched refs:this_cp (Results 1 – 1 of 1) sorted by relevance
17 int this_cp; member70 data->this_cp <<= 6; in decode_utf8()71 data->this_cp |= c & 0x3f; in decode_utf8()81 if(data->this_cp < 0x0080) data->this_cp = UNICODE_INVALID; in decode_utf8()84 if(data->this_cp < 0x0800) data->this_cp = UNICODE_INVALID; in decode_utf8()87 if(data->this_cp < 0x10000) data->this_cp = UNICODE_INVALID; in decode_utf8()90 if(data->this_cp < 0x200000) data->this_cp = UNICODE_INVALID; in decode_utf8()93 if(data->this_cp < 0x4000000) data->this_cp = UNICODE_INVALID; in decode_utf8()97 if((data->this_cp >= 0xD800 && data->this_cp <= 0xDFFF) || in decode_utf8()112 data->this_cp = c & 0x1f; in decode_utf8()[all …]