Home
last modified time | relevance | path

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

/netbsd-src/lib/libc/stdio/
H A Dvswprintf.c62 size_t nwc; in __weak_alias() local
93 nwc = mbsrtowcs_l(s, (void *)&mbp, n, &mbs, loc); in __weak_alias()
95 if (nwc == (size_t)-1) { in __weak_alias()
99 if (nwc == n) { in __weak_alias()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A D__bsd_locale_defaults.h24 #define __libcpp_wcsnrtombs_l(dst, src, nwc, len, ps, loc) wcsnrtombs_l(dst, src, nwc, len, ps, lo… argument
H A Dwchar.h178 size_t nwc, size_t len, mbstate_t *__restrict ps);
/netbsd-src/external/apache2/llvm/dist/libcxx/src/support/solaris/
H A Dwcsnrtombs.inc29 size_t nwc, size_t len, mbstate_t * __restrict ps, locale_t loc)
42 while (nwc-- > 0) {
54 while (len > 0 && nwc-- > 0) {
/netbsd-src/external/apache2/llvm/dist/libcxx/src/support/win32/
H A Dlocale_win32.cpp74 size_t nwc, size_t len, mbstate_t *__restrict ps, locale_t loc ) in wcsnrtombs_l() argument
77 return wcsnrtombs( dst, src, nwc, len, ps ); in wcsnrtombs_l()
/netbsd-src/external/gpl3/gdb/dist/readline/readline/
H A Dtext.c1406 wchar_t wc, nwc; in rl_change_case() local
1470 nwc = (nop == UpCase) ? _rl_to_wupper (wc) : _rl_to_wlower (wc); in rl_change_case()
1471 if (nwc != wc) /* just skip unchanged characters */ in rl_change_case()
1477 mlen = wcrtomb (mb, nwc, &ts); in rl_change_case()
1480 nwc = wc; in rl_change_case()
1482 mlen = wcrtomb (mb, nwc, &ts); in rl_change_case()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__support/win32/
H A Dlocale_win32.h208 size_t nwc, size_t len, mbstate_t *__restrict ps, locale_t loc);
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/doc/
H A DISO_639-2218 nwc Classical Newari; Old Newari; Classical Nepal Bhasa U
/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c855 int nwc = MultiByteToWideChar(CP_UTF8,0, z,ncTake, 0,0); in conZstrEmit() local
856 if( nwc > 0 ){ in conZstrEmit()
857 WCHAR *zw = sqlite3_malloc64(nwc*sizeof(WCHAR)); in conZstrEmit()
859 nwc = MultiByteToWideChar(CP_UTF8,0, z,ncTake, zw,nwc); in conZstrEmit()
860 if( nwc > 0 ){ in conZstrEmit()
862 if( WriteConsoleW(ppst->hx, zw,nwc, 0, NULL) ){ in conZstrEmit()