Home | History | Annotate | Download | only in Support

Lines Matching refs:FirstByte

522     uint8_t FirstByte = 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6);
524 Result.push_back(FirstByte);
527 uint8_t FirstByte = 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12);
530 Result.push_back(FirstByte);
534 uint8_t FirstByte = 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18);
538 Result.push_back(FirstByte);