Searched refs:towupper (Results 1 – 25 of 31) sorted by relevance
12
/freebsd/sys/libkern/ |
H A D | iconv_xlat16.c | 152 ctmp = towupper(((u_char)*src << 8) | (u_char)*(src + 1), in iconv_xlat16_conv() 181 ctmp = towupper((u_char)*src, dp->f_ctp); in iconv_xlat16_conv() 237 code = towupper((uint16_t)code, dp->t_ctp); in iconv_xlat16_conv() 255 l = (u_char)towupper(l, dp->t_ctp); in iconv_xlat16_conv()
|
H A D | iconv_ucs.c | 204 code = towupper(code, dp->ctype); in iconv_ucs_conv() 304 code = towupper(code, dp->ctype); in iconv_ucs_conv()
|
H A D | iconv.c | 314 towupper(int c, void *handle) in towupper() function
|
/freebsd/lib/libc/locale/ |
H A D | iswctype.c | 182 #undef towupper 184 towupper(wint_t wc) in towupper() function
|
H A D | Symbol.map | 46 towupper;
|
H A D | Makefile.inc | 42 setlocale.3 toascii.3 tolower.3 toupper.3 towlower.3 towupper.3 \
|
/freebsd/include/ |
H A D | wctype.h | 75 wint_t towupper(wint_t); 113 #define towupper(wc) __toupper(wc) macro
|
/freebsd/lib/libc/regex/ |
H A D | regex2.h | 140 ch == towupper(cs->wides[i])) in CHIN1() 164 CHIN1(cs, towupper(ch))); in CHIN()
|
H A D | regcomp.c | 1367 return(towupper(ch)); 1659 if ((nch = towupper(ch)) < NC)
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | cwctype | 44 wint_t towupper(wint_t wc); 90 using ::towupper _LIBCPP_USING_IF_EXISTS;
|
H A D | wctype.h | 41 wint_t towupper(wint_t wc); 89 # undef towupper
|
/freebsd/lib/libc/tests/locale/ |
H A D | towctrans_test.c | 52 { "toupper", towupper }, in ATF_TC_BODY()
|
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/ |
H A D | cwctype.inc | 31 using ::towupper _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | cwctype.cppm |
|
H A D | cwctype.inc | 31 using std::towupper _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/nvi/common/ |
H A D | multibyte.h | 54 #define TOUPPER towupper
|
/freebsd/contrib/dialog/ |
H A D | dlg_keys.h | 32 #define dlg_toupper(ch) towupper((wint_t)ch)
|
/freebsd/contrib/libedit/ |
H A D | emacs.c | 298 *cp = towupper(*cp); in em_upper_case() 323 *cp = towupper(*cp); in em_capitol_case()
|
/freebsd/sys/sys/ |
H A D | iconv.h | 171 int towupper(int c, void *handle);
|
/freebsd/usr.bin/tr/ |
H A D | tr.c | 215 ch = towupper(s1.lastch); in main()
|
/freebsd/lib/libkiconv/ |
H A D | xlat16_iconv.c | 205 c = towupper(c); in kiconv_xlat16_open()
|
/freebsd/usr.bin/sort/ |
H A D | bwstring.c | 101 m[i] = towupper(m[i]); in populate_wmonth() 1032 *s = towupper(*s); in ignore_case()
|
/freebsd/contrib/less/ |
H A D | less.h | 144 #define TO_UPPER(c) towupper((wint_t) (c))
|
/freebsd/usr.bin/ncal/ |
H A D | ncal.c | 793 mlines->name[0] = towupper(mlines->name[0]); in mkmonthr() 892 mlines->name[0] = towupper(mlines->name[0]); in mkmonthb()
|
/freebsd/contrib/tcsh/ |
H A D | sh.char.h | 194 # define Toupper(c) (((c) & QUOTE) ? 0 : (wchar_t)towupper(c))
|
12