Searched refs:wchar (Results 26 - 50 of 304) sorted by relevance

1234567891011>>

/freebsd-11-stable/lib/libc/string/
H A Dwmemset.c37 #include <wchar.h>
H A Dwcscspn.c37 #include <wchar.h>
H A Dwcslcpy.c39 #include <wchar.h>
H A Dwcsncasecmp.c30 #include <wchar.h>
H A Dwcsncat.c37 #include <wchar.h>
H A Dwcsncpy.c41 #include <wchar.h>
H A Dwcsspn.c37 #include <wchar.h>
H A Dwcsstr.c41 #include <wchar.h>
H A Dwcswidth.c46 #include <wchar.h>
H A Dwcslcat.c39 #include <wchar.h>
/freebsd-11-stable/lib/libc/locale/
H A Dmbsinit.c35 #include <wchar.h>
H A Dwcwidth.c46 #include <wchar.h>
H A Dcollcmp.c36 #include <wchar.h>
H A Dwctob.c37 #include <wchar.h>
/freebsd-11-stable/usr.bin/indent/tests/
H A DMakefile23 ${PACKAGE}FILES+= wchar.0
24 ${PACKAGE}FILES+= wchar.0.stdout
/freebsd-11-stable/lib/libc/stdio/
H A Dputwc.c37 #include <wchar.h>
H A Dvwprintf.c37 #include <wchar.h>
H A Dvwscanf.c37 #include <wchar.h>
H A Dwprintf.c37 #include <wchar.h>
H A Dwscanf.c37 #include <wchar.h>
/freebsd-11-stable/lib/libiconv_modules/ISO2022/
H A Dcitrus_iso2022.c43 #include <wchar.h>
581 wchar_t wchar = 0; local
733 wchar = *string++ & 0xff;
738 return (wchar);
797 wchar = *string++;
798 wchar &= 0x7f;
801 wchar = psenc->g[cur].final;
802 wchar = (wchar << 8);
803 wchar |
850 wchar_t wchar; local
[all...]
/freebsd-11-stable/lib/libiconv_modules/EUCTW/
H A Dcitrus_euctw.c68 #include <wchar.h>
183 wchar_t wchar; local
224 wchar = 0;
229 wchar = psenc->ch[0] & 0xff;
234 wchar = ((psenc->ch[0] & 0xff) << 8) | (psenc->ch[1] & 0xff);
235 wchar |= 'G' << 24;
243 wchar = ((psenc->ch[2] & 0xff) << 8) | (psenc->ch[3] & 0xff);
244 wchar |= ('G' + psenc->ch[1] - 0xa1) << 24;
254 *pwc = wchar;
255 *nresult = wchar
[all...]
/freebsd-11-stable/lib/libiconv_modules/UTF8/
H A Dcitrus_utf8.c73 #include <wchar.h>
184 wchar_t wchar; local
208 wchar = psenc->ch[0] & 0xff;
215 wchar = psenc->ch[0] & (0x7f >> c);
219 wchar <<= 6;
220 wchar |= (psenc->ch[i] & 0x3f);
222 if (_UTF8_surrogate(wchar) || _UTF8_findlen(wchar) != c)
226 *pwc = wchar;
227 *nresult = (wchar
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/locale/
H A Dt_wcscspn.c36 #include <wchar.h>
H A Dt_wcsspn.c36 #include <wchar.h>

Completed in 184 milliseconds

1234567891011>>