Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DYAMLParser.cpp579 uint8_t SecondByte = 0x80 | (UnicodeScalarValue & 0x3F); in encodeUTF8() local
581 Result.push_back(SecondByte); in encodeUTF8()
584 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); in encodeUTF8() local
587 Result.push_back(SecondByte); in encodeUTF8()
591 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0x3F000) >> 12); in encodeUTF8() local
595 Result.push_back(SecondByte); in encodeUTF8()
/external/llvm/include/llvm/DebugInfo/CodeView/
DSymbolRecord.h320 uint8_t SecondByte = Annotations.front(); in GetCompressedAnnotation() local
324 return ((FirstByte & 0x3F) << 8) | SecondByte; in GetCompressedAnnotation()
339 return ((FirstByte & 0x1F) << 24) | (SecondByte << 16) | in GetCompressedAnnotation()