Searched refs:wchar (Results 1 - 25 of 304) sorted by relevance

1234567891011>>

/freebsd-11-stable/lib/libc/locale/
H A Dwctomb.c36 #include <wchar.h>
40 wctomb_l(char *s, wchar_t wchar, locale_t locale) argument
51 if ((rval = XLOCALE_CTYPE(locale)->__wcrtomb(s, wchar, &locale->wctomb)) == (size_t)-1)
56 wctomb(char *s, wchar_t wchar) argument
58 return wctomb_l(s, wchar, __get_locale());
/freebsd-11-stable/contrib/libstdc++/include/c/
H A Dstd_cwchar.h44 #include_next <wchar.h>
48 // assumes it is in wchar.h, regardless of wchar_t specializations.
/freebsd-11-stable/lib/libc/string/
H A Dwcscmp.c42 #include <wchar.h>
H A Dwcpcpy.c38 #include <wchar.h>
H A Dwcpncpy.c30 #include <wchar.h>
H A Dwcscasecmp.c30 #include <wchar.h>
H A Dwcscat.c37 #include <wchar.h>
H A Dwcschr.c30 #include <wchar.h>
H A Dwcscpy.c37 #include <wchar.h>
H A Dwcsdup.c31 #include <wchar.h>
H A Dwcslen.c37 #include <wchar.h>
H A Dwcsncmp.c39 #include <wchar.h>
H A Dwcsnlen.c30 #include <wchar.h>
H A Dwcspbrk.c37 #include <wchar.h>
H A Dwcsrchr.c30 #include <wchar.h>
H A Dwmemchr.c37 #include <wchar.h>
H A Dwmemcmp.c37 #include <wchar.h>
46 /* wchar might be unsigned */
H A Dwmemcpy.c38 #include <wchar.h>
H A Dwmemmove.c38 #include <wchar.h>
/freebsd-11-stable/stand/efi/
H A DMakefile.inc9 CFLAGS+= -fshort-wchar
14 CFLAGS+= -fshort-wchar
/freebsd-11-stable/contrib/tcsh/
H A Dtc.nls.c38 xwcwidth (wint_t wchar) argument
42 if (wchar <= 0xffff)
43 return wcwidth ((wchar_t) wchar);
48 wchar -= 0x10000;
49 ws[0] = 0xd800 | (wchar >> 10);
50 ws[1] = 0xdc00 | (wchar & 0x3ff);
/freebsd-11-stable/lib/libc/stdio/
H A Dfwide.c33 #include <wchar.h>
H A Dgetwc.c37 #include <wchar.h>
H A Dgetwchar.c37 #include <wchar.h>
H A Dputwchar.c37 #include <wchar.h>

Completed in 123 milliseconds

1234567891011>>