Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/llvm/lib/Support/
H A DJSON.cpp593 Out.push_back(SecondByte); in encodeUtf8() local
588 uint8_t SecondByte = 0x80 | (Rune & 0x3F); encodeUtf8() local
600 uint8_t SecondByte = 0x80 | ((Rune & 0x3F000) >> 12); encodeUtf8() local
H A DYAMLParser.cpp586 uint8_t SecondByte = 0x80 | (UnicodeScalarValue & 0x3F); in encodeUTF8() local
591 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); in encodeUTF8() local
598 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0x3F000) >> 12); in encodeUTF8() local
/freebsd-src/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h236 uint8_t SecondByte = Annotations.front(); in GetCompressedAnnotation() local