Home
last modified time | relevance | path

Searched refs:cp_low (Results 1 – 2 of 2) sorted by relevance

/glogg/glogg/tests/
H A DencodingspeculatorTest.cpp
/glogg/tests/
H A DencodingspeculatorTest.cpp41 uint8_t cp_low = static_cast<uint8_t>(code_point & 0xFF); in utf8encode2bytes() local
43 uint8_t first_byte = 0xC0 | ( ( cp_hi & 0x7F ) << 2 ) | ( ( cp_low & 0xC0 ) >> 6 ); in utf8encode2bytes()
44 uint8_t second_byte = 0x80 | ( cp_low & 0x3F ); in utf8encode2bytes()