Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Support/
H A DJSON.cpp413 uint8_t SecondByte = 0x80 | (Rune & 0x3F); in encodeUtf8() local
415 Out.push_back(SecondByte); in encodeUtf8()
418 uint8_t SecondByte = 0x80 | ((Rune & 0xFC0) >> 6); in encodeUtf8() local
421 Out.push_back(SecondByte); in encodeUtf8()
425 uint8_t SecondByte = 0x80 | ((Rune & 0x3F000) >> 12); in encodeUtf8() local
429 Out.push_back(SecondByte); in encodeUtf8()
H A DYAMLParser.cpp572 uint8_t SecondByte = 0x80 | (UnicodeScalarValue & 0x3F); in encodeUTF8() local
574 Result.push_back(SecondByte); in encodeUTF8()
577 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); in encodeUTF8() local
580 Result.push_back(SecondByte); in encodeUTF8()
584 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0x3F000) >> 12); in encodeUTF8() local
588 Result.push_back(SecondByte); in encodeUTF8()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h222 uint8_t SecondByte = Annotations.front(); in GetCompressedAnnotation() local
226 return ((FirstByte & 0x3F) << 8) | SecondByte; in GetCompressedAnnotation()
241 return ((FirstByte & 0x1F) << 24) | (SecondByte << 16) | in GetCompressedAnnotation()