Searched refs:ThirdByte (Results 1 – 3 of 3) sorted by relevance
575 uint8_t ThirdByte = 0x80 | (Rune & 0x3F); in encodeUtf8() local578 Out.push_back(ThirdByte); in encodeUtf8()582 uint8_t ThirdByte = 0x80 | ((Rune & 0xFC0) >> 6); in encodeUtf8() local586 Out.push_back(ThirdByte); in encodeUtf8()
570 uint8_t ThirdByte = 0x80 | (UnicodeScalarValue & 0x3F); in encodeUTF8() local573 Result.push_back(ThirdByte); in encodeUTF8()577 uint8_t ThirdByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); in encodeUTF8() local581 Result.push_back(ThirdByte); in encodeUTF8()
225 uint8_t ThirdByte = Annotations.front(); in GetCompressedAnnotation() local236 (ThirdByte << 8) | FourthByte; in GetCompressedAnnotation()