Searched refs:towlower (Results 1 – 25 of 40) sorted by relevance
12
/freebsd/lib/libc/gen/ |
H A D | fnmatch.c | 195 (towlower(pc) == towlower(sc))) in fnmatch1() 252 test = towlower(test); in rangematch() 277 c = towlower(c); in rangematch() 292 c2 = towlower(c2); in rangematch()
|
/freebsd/lib/libc/string/ |
H A D | wcscasecmp.c | 38 c1 = towlower(*s1); in wcscasecmp() 39 c2 = towlower(*s2); in wcscasecmp()
|
H A D | wcsncasecmp.c | 40 c1 = towlower(*s1); in wcsncasecmp() 41 c2 = towlower(*s2); in wcsncasecmp()
|
/freebsd/sys/libkern/ |
H A D | iconv_xlat16.c | 149 ctmp = towlower(((u_char)*src << 8) | (u_char)*(src + 1), in iconv_xlat16_conv() 176 ctmp = towlower((u_char)*src, dp->f_ctp); in iconv_xlat16_conv() 232 code = towlower((uint16_t)code, dp->t_ctp); in iconv_xlat16_conv() 249 l = (u_char)towlower(l, dp->t_ctp); in iconv_xlat16_conv()
|
H A D | iconv_ucs.c | 202 code = towlower(code, dp->ctype); in iconv_ucs_conv() 302 code = towlower(code, dp->ctype); in iconv_ucs_conv()
|
/freebsd/lib/libc/locale/ |
H A D | iswctype.c | 175 #undef towlower 177 towlower(wint_t wc) in towlower() function
|
H A D | Symbol.map | 45 towlower;
|
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 | 74 wint_t towlower(wint_t); 112 #define towlower(wc) __tolower(wc) macro
|
/freebsd/crypto/openssh/openbsd-compat/ |
H A D | bsd-cygwin_util.c | 179 if (*pattern != '?' && towlower(*pattern) != towlower(*s)) in __match_pattern()
|
/freebsd/lib/libc/regex/ |
H A D | regex2.h | 139 if (ch == towlower(cs->wides[i]) || in CHIN1() 163 return (CHIN1(cs, ch) || CHIN1(cs, towlower(ch)) || in CHIN()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | cwctype | 43 wint_t towlower(wint_t wc); 89 using ::towlower _LIBCPP_USING_IF_EXISTS;
|
H A D | wctype.h | 40 wint_t towlower(wint_t wc); 88 # undef towlower
|
/freebsd/usr.bin/look/ |
H A D | look.c | 174 ch = towlower(ch); in prepkey() 332 ch2 = towlower(ch2); in compare()
|
/freebsd/lib/libc/tests/locale/ |
H A D | towctrans_test.c | 51 { "tolower", towlower }, in ATF_TC_BODY()
|
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/ |
H A D | cwctype.inc | 30 using ::towlower _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | cwctype.cppm |
|
H A D | cwctype.inc | 30 using std::towlower _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/nvi/common/ |
H A D | multibyte.h | 53 #define TOLOWER towlower
|
/freebsd/usr.bin/comm/ |
H A D | comm.c | 197 *p = towlower(*p); in convert()
|
/freebsd/contrib/libedit/ |
H A D | emacs.c | 330 *cp = towlower(*cp); in em_capitol_case() 354 *cp = towlower(*cp); in em_lower_case()
|
/freebsd/sys/sys/ |
H A D | iconv.h | 170 int towlower(int c, void *handle);
|
/freebsd/contrib/tcsh/ |
H A D | tc.str.c | 410 else if ((l1 = towlower(*str1)) != (l2 = towlower(*str2)))
|
H A D | glob.c | 147 c1 = towlower(c1); in globcharcoll() 148 c2 = towlower(c2); in globcharcoll()
|
/freebsd/usr.bin/tr/ |
H A D | tr.c | 232 ch = towlower(s1.lastch); in main()
|
12