Searched refs:first_code (Results 1 – 1 of 1) sorted by relevance
530 unsigned int first_code = 0; in utf16_literal_to_utf8() local543 first_code = parse_hex4(first_sequence + 2); in utf16_literal_to_utf8()546 if ((first_code >= 0xDC00) && (first_code <= 0xDFFF)) goto fail; in utf16_literal_to_utf8()549 if ((first_code >= 0xD800) && (first_code <= 0xDBFF)) { in utf16_literal_to_utf8()573 codepoint = 0x10000 + (((first_code & 0x3FF) << 10) | (second_code & 0x3FF)); in utf16_literal_to_utf8()576 codepoint = first_code; in utf16_literal_to_utf8()