Home
last modified time | relevance | path

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

/external/libcxx/src/
Dlocale.cpp1770 uint16_t wc2 = frm_nxt[1]; in utf16_to_utf8() local
1771 if ((wc2 & 0xFC00) != 0xDC00) in utf16_to_utf8()
1776 ((wc1 & 0x003FUL) << 10) + (wc2 & 0x03FF) > Maxcode) in utf16_to_utf8()
1782 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0003) << 4) | ((wc2 & 0x03C0) >> 6)); in utf16_to_utf8()
1783 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc2 & 0x003F)); in utf16_to_utf8()
1847 uint16_t wc2 = static_cast<uint16_t>(frm_nxt[1]); in utf16_to_utf8() local
1848 if ((wc2 & 0xFC00) != 0xDC00) in utf16_to_utf8()
1853 ((wc1 & 0x003FUL) << 10) + (wc2 & 0x03FF) > Maxcode) in utf16_to_utf8()
1859 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0003) << 4) | ((wc2 & 0x03C0) >> 6)); in utf16_to_utf8()
1860 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc2 & 0x003F)); in utf16_to_utf8()