Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/llvm-libc++/src/support/android/
Dwchar_support.c56 wchar_t wc2 = towlower(s2[n]); in wcscasecmp() local
57 if (wc1 != wc2) in wcscasecmp()
58 return (wc1 > wc2) ? +1 : -1; in wcscasecmp()
140 wchar_t wc2 = towlower(s2[i]); in wcsncasecmp() local
141 if (wc1 != wc2) in wcsncasecmp()
142 return (wc1 > wc2) ? +1 : -1; in wcsncasecmp()
/ndk/sources/host-tools/sed-4.2.1/lib/
Dregex_internal.c500 wchar_t wc2; in re_string_skip_chars() local
504 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() local
750 mbclen = __mbrtowc (&wc2, (const char *) p, mlen, in re_string_reconstruct()
758 wc = wc2; in re_string_reconstruct()
/ndk/sources/cxx-stl/llvm-libc++/src/
Dlocale.cpp1663 uint16_t wc2 = frm_nxt[1]; in utf16_to_utf8() local
1664 if ((wc2 & 0xFC00) != 0xDC00) in utf16_to_utf8()
1669 (((unsigned long)wc1 & 0x003F) << 10) + (wc2 & 0x03FF) > Maxcode) in utf16_to_utf8()
1675 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0003) << 4) | ((wc2 & 0x03C0) >> 6)); in utf16_to_utf8()
1676 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc2 & 0x003F)); in utf16_to_utf8()
1740 uint16_t wc2 = static_cast<uint16_t>(frm_nxt[1]); in utf16_to_utf8() local
1741 if ((wc2 & 0xFC00) != 0xDC00) in utf16_to_utf8()
1746 (((unsigned long)wc1 & 0x003F) << 10) + (wc2 & 0x03FF) > Maxcode) in utf16_to_utf8()
1752 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0003) << 4) | ((wc2 & 0x03C0) >> 6)); in utf16_to_utf8()
1753 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc2 & 0x003F)); in utf16_to_utf8()