Searched refs:SecondByte (Results 1 – 1 of 1) sorted by relevance
526 uint8_t SecondByte = 0x80 | (UnicodeScalarValue & 0x3F); in encodeUTF8() local528 Result.push_back(SecondByte); in encodeUTF8()531 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); in encodeUTF8() local534 Result.push_back(SecondByte); in encodeUTF8()538 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0x3F000) >> 12); in encodeUTF8() local542 Result.push_back(SecondByte); in encodeUTF8()