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

/external/llvm/lib/Support/
H A DYAMLParser.cpp517 uint8_t SecondByte = 0x80 | (UnicodeScalarValue & 0x3F); local
519 Result.push_back(SecondByte);
522 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6); local
525 Result.push_back(SecondByte);
529 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0x3F000) >> 12); local
533 Result.push_back(SecondByte);

Completed in 287 milliseconds