Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Support/
H A DJSON.cpp591 uint8_t ThirdByte = 0x80 | (Rune & 0x3F); in encodeUtf8() local
594 Out.push_back(ThirdByte); in encodeUtf8()
598 uint8_t ThirdByte = 0x80 | ((Rune & 0xFC0) >> 6); in encodeUtf8() local
602 Out.push_back(ThirdByte); in encodeUtf8()
H A DYAMLParser.cpp584 uint8_t ThirdByte = 0x80 | (UnicodeScalarValue & 0x3F); in encodeUTF8() local
587 Result.push_back(ThirdByte); in encodeUTF8()
591 uint8_t ThirdByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); in encodeUTF8() local
595 Result.push_back(ThirdByte); in encodeUTF8()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h225 uint8_t ThirdByte = Annotations.front(); in GetCompressedAnnotation() local
236 (ThirdByte << 8) | FourthByte; in GetCompressedAnnotation()