Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DJSON.cpp593 uint8_t ThirdByte = 0x80 | (Rune & 0x3F); in encodeUtf8() local
596 Out.push_back(ThirdByte); in encodeUtf8()
600 uint8_t ThirdByte = 0x80 | ((Rune & 0xFC0) >> 6); in encodeUtf8() local
604 Out.push_back(ThirdByte); in encodeUtf8()
H A DYAMLParser.cpp591 uint8_t ThirdByte = 0x80 | (UnicodeScalarValue & 0x3F); in encodeUTF8() local
594 Result.push_back(ThirdByte); in encodeUTF8()
598 uint8_t ThirdByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); in encodeUTF8() local
602 Result.push_back(ThirdByte); in encodeUTF8()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h259 uint8_t ThirdByte = Annotations.consume_front(); in GetCompressedAnnotation() local
268 (ThirdByte << 8) | FourthByte; in GetCompressedAnnotation()