Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Support/
H A DJSON.cpp419 uint8_t ThirdByte = 0x80 | (Rune & 0x3F); in encodeUtf8() local
422 Out.push_back(ThirdByte); in encodeUtf8()
426 uint8_t ThirdByte = 0x80 | ((Rune & 0xFC0) >> 6); in encodeUtf8() local
430 Out.push_back(ThirdByte); in encodeUtf8()
H A DYAMLParser.cpp578 uint8_t ThirdByte = 0x80 | (UnicodeScalarValue & 0x3F); in encodeUTF8() local
581 Result.push_back(ThirdByte); in encodeUTF8()
585 uint8_t ThirdByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); in encodeUTF8() local
589 Result.push_back(ThirdByte); in encodeUTF8()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h231 uint8_t ThirdByte = Annotations.front(); in GetCompressedAnnotation() local
242 (ThirdByte << 8) | FourthByte; in GetCompressedAnnotation()