Searched refs:SecondByte (Results 1 – 3 of 3) sorted by relevance
413 uint8_t SecondByte = 0x80 | (Rune & 0x3F); in encodeUtf8() local415 Out.push_back(SecondByte); in encodeUtf8()418 uint8_t SecondByte = 0x80 | ((Rune & 0xFC0) >> 6); in encodeUtf8() local421 Out.push_back(SecondByte); in encodeUtf8()425 uint8_t SecondByte = 0x80 | ((Rune & 0x3F000) >> 12); in encodeUtf8() local429 Out.push_back(SecondByte); in encodeUtf8()
572 uint8_t SecondByte = 0x80 | (UnicodeScalarValue & 0x3F); in encodeUTF8() local574 Result.push_back(SecondByte); in encodeUTF8()577 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); in encodeUTF8() local580 Result.push_back(SecondByte); in encodeUTF8()584 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0x3F000) >> 12); in encodeUTF8() local588 Result.push_back(SecondByte); in encodeUTF8()
222 uint8_t SecondByte = Annotations.front(); in GetCompressedAnnotation() local226 return ((FirstByte & 0x3F) << 8) | SecondByte; in GetCompressedAnnotation()241 return ((FirstByte & 0x1F) << 24) | (SecondByte << 16) | in GetCompressedAnnotation()