Searched refs:cp_hi (Results 1 – 2 of 2) sorted by relevance
42 uint8_t cp_hi = static_cast<uint8_t>((code_point & 0xFF00) >> 8); in utf8encode2bytes() local43 uint8_t first_byte = 0xC0 | ( ( cp_hi & 0x7F ) << 2 ) | ( ( cp_low & 0xC0 ) >> 6 ); in utf8encode2bytes()