Searched refs:first_code (Results 1 – 2 of 2) sorted by relevance
580 unsigned int first_code = 0; in utf16_literal_to_utf8() local594 first_code = parse_hex4(first_sequence + 2); in utf16_literal_to_utf8()597 if (((first_code >= 0xDC00) && (first_code <= 0xDFFF))) in utf16_literal_to_utf8()603 if ((first_code >= 0xD800) && (first_code <= 0xDBFF)) in utf16_literal_to_utf8()632 codepoint = 0x10000 + (((first_code & 0x3FF) << 10) | (second_code & 0x3FF)); in utf16_literal_to_utf8()637 codepoint = first_code; in utf16_literal_to_utf8()
336 FT_UInt first_code, code_count, offset; in FT_CALLBACK_DEF() local340 first_code = TT_NEXT_USHORT( p ); in FT_CALLBACK_DEF()352 if ( first_code >= 256 || first_code + code_count > 256 ) in FT_CALLBACK_DEF()
Completed in 16 milliseconds