Searched defs:SecondByte (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Support/
H A DYAMLParser.cpp526 uint8_t SecondByte = 0x80 | (UnicodeScalarValue & 0x3F); local
528 Result.push_back(SecondByte);
531 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); local
534 Result.push_back(SecondByte);
538 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0x3F000) >> 12); local
542 Result.push_back(SecondByte);

Completed in 48 milliseconds