Searched refs:pwcs (Results 1 – 5 of 5) sorted by relevance
/reactos/sdk/lib/ucrt/convert/ |
H A D | mbstowcs.cpp | 55 if (pwcs && n == 0) in _mbstowcs_l_helper() 61 if (pwcs && n > 0) in _mbstowcs_l_helper() 63 *pwcs = '\0'; in _mbstowcs_l_helper() 78 if (pwcs) in _mbstowcs_l_helper() 91 pwcs++; in _mbstowcs_l_helper() 106 pwcs, in _mbstowcs_l_helper() 150 pwcs, in _mbstowcs_l_helper() 186 wchar_t *pwcs, in _mbstowcs_l() argument 198 wchar_t *pwcs, in mbstowcs() argument 305 wchar_t * pwcs, in _mbstowcs_s_l() argument [all …]
|
H A D | wcstombs.cpp | 85 _In_z_ const wchar_t * pwcs, in _wcstombs_l_helper() argument 132 s[count] = (char) *pwcs; in _wcstombs_l_helper() 133 if (*pwcs++ == L'\0') in _wcstombs_l_helper() 151 n = wcsncnt(pwcs, n); in _wcstombs_l_helper() 155 pwcs, in _wcstombs_l_helper() 236 pwcs++; in _wcstombs_l_helper() 264 pwcs, in _wcstombs_l_helper() 283 const wchar_t * pwcs, in _wcstombs_l() argument 289 return _wcstombs_l_helper(s, pwcs, n, ptd); in _wcstombs_l() 294 const wchar_t * pwcs, in wcstombs() argument [all …]
|
/reactos/win32ss/user/winsrv/consrv/frontends/ |
H A D | wcwidth.c | 211 int mk_wcswidth(const wchar_t *pwcs, size_t n) in mk_wcswidth() argument 215 for (;*pwcs && n-- > 0; pwcs++) in mk_wcswidth() 216 if ((w = mk_wcwidth(*pwcs)) < 0) in mk_wcswidth() 302 int mk_wcswidth_cjk(const wchar_t *pwcs, size_t n) in mk_wcswidth_cjk() argument 306 for (;*pwcs && n-- > 0; pwcs++) in mk_wcswidth_cjk() 307 if ((w = mk_wcwidth_cjk(*pwcs)) < 0) in mk_wcswidth_cjk()
|
/reactos/base/shell/cmd/ |
H A D | wcwidth.c | 211 int mk_wcswidth(const wchar_t *pwcs, size_t n) in mk_wcswidth() argument 215 for (;*pwcs && n-- > 0; pwcs++) in mk_wcswidth() 216 if ((w = mk_wcwidth(*pwcs)) < 0) in mk_wcswidth() 302 int mk_wcswidth_cjk(const wchar_t *pwcs, size_t n) in mk_wcswidth_cjk() argument 306 for (;*pwcs && n-- > 0; pwcs++) in mk_wcswidth_cjk() 307 if ((w = mk_wcwidth_cjk(*pwcs)) < 0) in mk_wcswidth_cjk()
|
/reactos/drivers/filesystems/ext2/src/nls/ |
H A D | nls_base.c | 79 utf8_mbstowcs(wchar_t *pwcs, const __u8 *s, int n) in utf8_mbstowcs() argument 85 op = pwcs; in utf8_mbstowcs() 104 return (int)(op - pwcs); in utf8_mbstowcs() 136 utf8_wcstombs(__u8 *s, const wchar_t *pwcs, int maxlen) in utf8_wcstombs() argument 143 ip = pwcs; in utf8_wcstombs()
|