Searched refs:wc2 (Results 1 – 3 of 3) sorted by relevance
23 wchar_t wc1, wc2; in demo_utf8towc_main() local31 wc1 = wc2 = 0; in demo_utf8towc_main()38 len2 = utf8towc(&wc2, str, len2); in demo_utf8towc_main()39 if (len1 != len2 || wc1 != wc2) in demo_utf8towc_main()40 printf("%x %d %x %d %x\n", u, len1, wc1, len2, wc2); in demo_utf8towc_main()
1781 uint16_t wc2 = frm_nxt[1]; in utf16_to_utf8() local1782 if ((wc2 & 0xFC00) != 0xDC00) in utf16_to_utf8()1787 ((wc1 & 0x003FUL) << 10) + (wc2 & 0x03FF) > Maxcode) in utf16_to_utf8()1793 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0003) << 4) | ((wc2 & 0x03C0) >> 6)); in utf16_to_utf8()1794 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc2 & 0x003F)); in utf16_to_utf8()1858 uint16_t wc2 = static_cast<uint16_t>(frm_nxt[1]); in utf16_to_utf8() local1859 if ((wc2 & 0xFC00) != 0xDC00) in utf16_to_utf8()1864 ((wc1 & 0x003FUL) << 10) + (wc2 & 0x03FF) > Maxcode) in utf16_to_utf8()1870 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0003) << 4) | ((wc2 & 0x03C0) >> 6)); in utf16_to_utf8()1871 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc2 & 0x003F)); in utf16_to_utf8()
META-INF/ META-INF/MANIFEST.MF org/ org/checkerframework/ org/ ...