Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DJSON.cpp569 uint8_t SecondByte = 0x80 | (Rune & 0x3F); in encodeUtf8() local
571 Out.push_back(SecondByte); in encodeUtf8()
574 uint8_t SecondByte = 0x80 | ((Rune & 0xFC0) >> 6); in encodeUtf8() local
577 Out.push_back(SecondByte); in encodeUtf8()
581 uint8_t SecondByte = 0x80 | ((Rune & 0x3F000) >> 12); in encodeUtf8() local
585 Out.push_back(SecondByte); in encodeUtf8()
H A DYAMLParser.cpp564 uint8_t SecondByte = 0x80 | (UnicodeScalarValue & 0x3F); in encodeUTF8() local
566 Result.push_back(SecondByte); in encodeUTF8()
569 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); in encodeUTF8() local
572 Result.push_back(SecondByte); in encodeUTF8()
576 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0x3F000) >> 12); in encodeUTF8() local
580 Result.push_back(SecondByte); in encodeUTF8()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h216 uint8_t SecondByte = Annotations.front(); in GetCompressedAnnotation() local
220 return ((FirstByte & 0x3F) << 8) | SecondByte; in GetCompressedAnnotation()
235 return ((FirstByte & 0x1F) << 24) | (SecondByte << 16) | in GetCompressedAnnotation()