Searched refs:wc2 (Results 1 – 3 of 3) sorted by relevance
47 wchar_t wc2 = towlower(s2[n]); in wcscasecmp() local48 if (wc1 != wc2) in wcscasecmp()49 return (wc1 > wc2) ? +1 : -1; in wcscasecmp()131 wchar_t wc2 = towlower(s2[i]); in wcsncasecmp() local132 if (wc1 != wc2) in wcsncasecmp()133 return (wc1 > wc2) ? +1 : -1; in wcsncasecmp()
500 wchar_t wc2; in re_string_skip_chars() local504 mbclen = __mbrtowc (&wc2, (const char *) pstr->raw_mbs + rawbuf_idx, in re_string_skip_chars()517 wc = wc2; in re_string_skip_chars()736 wchar_t wc2; in re_string_reconstruct() local750 mbclen = __mbrtowc (&wc2, (const char *) p, mlen, in re_string_reconstruct()758 wc = wc2; in re_string_reconstruct()
1822 uint16_t wc2 = frm_nxt[1]; in utf16_to_utf8() local1823 if ((wc2 & 0xFC00) != 0xDC00) in utf16_to_utf8()1828 ((wc1 & 0x003FUL) << 10) + (wc2 & 0x03FF) > Maxcode) in utf16_to_utf8()1834 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0003) << 4) | ((wc2 & 0x03C0) >> 6)); in utf16_to_utf8()1835 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc2 & 0x003F)); in utf16_to_utf8()1899 uint16_t wc2 = static_cast<uint16_t>(frm_nxt[1]); in utf16_to_utf8() local1900 if ((wc2 & 0xFC00) != 0xDC00) in utf16_to_utf8()1905 ((wc1 & 0x003FUL) << 10) + (wc2 & 0x03FF) > Maxcode) in utf16_to_utf8()1911 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0003) << 4) | ((wc2 & 0x03C0) >> 6)); in utf16_to_utf8()1912 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc2 & 0x003F)); in utf16_to_utf8()