Home
last modified time | relevance | path

Searched refs:SecondByte (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DJSON.cpp587 uint8_t SecondByte = 0x80 | (Rune & 0x3F); in encodeUtf8() local
589 Out.push_back(SecondByte); in encodeUtf8()
592 uint8_t SecondByte = 0x80 | ((Rune & 0xFC0) >> 6); in encodeUtf8() local
595 Out.push_back(SecondByte); in encodeUtf8()
599 uint8_t SecondByte = 0x80 | ((Rune & 0x3F000) >> 12); in encodeUtf8() local
603 Out.push_back(SecondByte); in encodeUtf8()
H A DYAMLParser.cpp585 uint8_t SecondByte = 0x80 | (UnicodeScalarValue & 0x3F); in encodeUTF8() local
587 Result.push_back(SecondByte); in encodeUTF8()
590 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); in encodeUTF8() local
593 Result.push_back(SecondByte); in encodeUTF8()
597 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0x3F000) >> 12); in encodeUTF8() local
601 Result.push_back(SecondByte); in encodeUTF8()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h251 uint8_t SecondByte = Annotations.consume_front(); in GetCompressedAnnotation() local
254 return ((FirstByte & 0x3F) << 8) | SecondByte; in GetCompressedAnnotation()
267 return ((FirstByte & 0x1F) << 24) | (SecondByte << 16) | in GetCompressedAnnotation()