Searched refs:SecondByte (Results 1 – 3 of 3) sorted by relevance
585 uint8_t SecondByte = 0x80 | (Rune & 0x3F); in encodeUtf8() local587 Out.push_back(SecondByte); in encodeUtf8()590 uint8_t SecondByte = 0x80 | ((Rune & 0xFC0) >> 6); in encodeUtf8() local593 Out.push_back(SecondByte); in encodeUtf8()597 uint8_t SecondByte = 0x80 | ((Rune & 0x3F000) >> 12); in encodeUtf8() local601 Out.push_back(SecondByte); in encodeUtf8()
586 uint8_t SecondByte = 0x80 | (UnicodeScalarValue & 0x3F); in encodeUTF8() 588 Result.push_back(SecondByte); in encodeUTF8() 591 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); in encodeUTF8() 594 Result.push_back(SecondByte); in encodeUTF8() 598 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0x3F000) >> 12); in encodeUTF8() 602 Result.push_back(SecondByte); in dumpTokens() 578 uint8_t SecondByte = 0x80 | (UnicodeScalarValue & 0x3F); encodeUTF8() local 583 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); encodeUTF8() local 590 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0x3F000) >> 12); encodeUTF8() local
236 uint8_t SecondByte = Annotations.front(); in GetCompressedAnnotation() 240 return ((FirstByte & 0x3F) << 8) | SecondByte; in DecodeSignedOperand() 255 return ((FirstByte & 0x1F) << 24) | (SecondByte << 16) | in ParseCurrentAnnotation() 215 uint8_t SecondByte = Annotations.front(); GetCompressedAnnotation() local