Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/lib/Support/
H A DJSON.cpp586 uint8_t SecondByte = 0x80 | (Rune & 0x3F); in encodeUtf8() local
588 Out.push_back(SecondByte); in encodeUtf8()
591 uint8_t SecondByte = 0x80 | ((Rune & 0xFC0) >> 6); in encodeUtf8() local
594 Out.push_back(SecondByte); in encodeUtf8()
598 uint8_t SecondByte = 0x80 | ((Rune & 0x3F000) >> 12); in encodeUtf8() local
602 Out.push_back(SecondByte); in encodeUtf8()
H A DYAMLParser.cpp578 uint8_t SecondByte = 0x80 | (UnicodeScalarValue & 0x3F); in encodeUTF8() local
580 Result.push_back(SecondByte); in encodeUTF8()
583 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); in encodeUTF8() local
586 Result.push_back(SecondByte); in encodeUTF8()
590 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0x3F000) >> 12); in encodeUTF8() local
594 Result.push_back(SecondByte); in encodeUTF8()
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h215 uint8_t SecondByte = Annotations.front(); in GetCompressedAnnotation() local
219 return ((FirstByte & 0x3F) << 8) | SecondByte; in GetCompressedAnnotation()
234 return ((FirstByte & 0x1F) << 24) | (SecondByte << 16) | in GetCompressedAnnotation()