Searched refs:first_code (Results 1 – 1 of 1) sorted by relevance
660 unsigned int first_code = 0; in utf16_literal_to_utf8() local674 first_code = parse_hex4(first_sequence + 2); in utf16_literal_to_utf8()677 if (((first_code >= 0xDC00) && (first_code <= 0xDFFF))) in utf16_literal_to_utf8()683 if ((first_code >= 0xD800) && (first_code <= 0xDBFF)) in utf16_literal_to_utf8()712 codepoint = 0x10000 + (((first_code & 0x3FF) << 10) | (second_code & 0x3FF)); in utf16_literal_to_utf8()717 codepoint = first_code; in utf16_literal_to_utf8()