Searched refs:tolower (Results 1 - 25 of 291) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/netbsd-tests/usr.bin/awk/
H A Dd_tolower.awk4 print tolower($0);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Derr.D_PROTO_ARG.tolower.d28 trace(tolower(2152006));
H A Derr.D_PROTO_LEN.tolower.d28 trace(tolower());
H A Derr.D_PROTO_LEN.tolowertoomany.d28 trace(tolower("dory", "eel", "roughy"));
H A Derr.D_PROTO_LEN.touppertoomany.d28 trace(tolower("haino", "tylo"));
/freebsd-11-stable/sys/libkern/
H A Dstrcasecmp.c46 while (tolower(*us1) == tolower(*us2)) {
51 return (tolower(*us1) - tolower(*us2));
63 if (tolower(*us1) != tolower(*us2))
64 return (tolower(*us1) - tolower(*us2));
H A Dfnmatch.c145 (tolower((unsigned char)c) ==
146 tolower((unsigned char)*string)))
173 test = tolower((unsigned char)test);
192 c = tolower((unsigned char)c);
203 c2 = tolower((unsigned char)c2);
/freebsd-11-stable/stand/libsa/
H A Dstrcasecmp.c49 while (tolower(*us1) == tolower(*us2++))
52 return (tolower(*us1) - tolower(*--us2));
66 if (tolower(*us1) != tolower(*us2++))
67 return (tolower(*us1) - tolower(*--us2));
/freebsd-11-stable/contrib/file/src/
H A Dstrcasestr.c54 if (tolower(*us1) != tolower(*us2++))
55 return tolower(*us1) - tolower(*--us2);
73 c = tolower((unsigned char)c);
79 } while ((char)tolower((unsigned char)sc) != c);
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dstrlwr.c47 *s = tolower((unsigned char)*s);
/freebsd-11-stable/contrib/mdocml/
H A Dcompat_strcasestr.c60 c = tolower((unsigned char)c);
66 } while ((char)tolower((unsigned char)sc) != c);
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dstrcasestr.c55 c = (char)tolower((unsigned char)c);
61 } while ((char)tolower((unsigned char)sc) != c);
/freebsd-11-stable/crypto/heimdal/appl/telnet/libtelnet/
H A Dgenget.c44 #define LOWER(x) (isupper(x) ? tolower(x) : (x))
63 while (tolower((unsigned char)c1) == tolower((unsigned char)c2)) {
/freebsd-11-stable/usr.bin/getaddrinfo/
H A Dtables.awk55 printf("\t[AF_%s] = \"%s\",\n", afs[i], tolower(afs[i]));
61 tolower(socktypes[i]));
/freebsd-11-stable/contrib/ncurses/progs/
H A Dtransform.c54 if (tolower(UChar(a[n])) != tolower(UChar(ignore[n - first]))) {
/freebsd-11-stable/contrib/libstdc++/include/c_std/
H A Dstd_cctype.h65 #undef tolower macro
81 using ::tolower;
/freebsd-11-stable/usr.bin/locate/locate/
H A Dlocate.h63 define TOLOWER(ch) tolower(ch)
/freebsd-11-stable/contrib/llvm-project/libcxx/include/
H A Dctype.h28 int tolower(int c);
54 #undef tolower macro
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DOptEmitter.cpp24 char a = tolower(*A), b = tolower(*B);
29 a = tolower(*++X);
30 b = tolower(*++Y);
/freebsd-11-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutnonansi.c195 *String = (char) tolower ((int) *String);
262 c1 = tolower ((int) *String1);
263 c2 = tolower ((int) *String2);
/freebsd-11-stable/contrib/libstdc++/include/c_compatibility/
H A Dctype.h46 using std::tolower;
/freebsd-11-stable/contrib/unbound/util/data/
H A Ddname.c119 tolower((unsigned char)*d1) != tolower((unsigned char)*d2)) {
120 if(tolower((unsigned char)*d1) < tolower((unsigned char)*d2))
143 *dname = (uint8_t)tolower((unsigned char)*dname);
172 *dname = (uint8_t)tolower((unsigned char)*dname);
272 if(tolower((unsigned char)*d1) != tolower((unsigned char)*d2)) {
273 if(tolower((unsigned char)*d1) < tolower((unsigne
[all...]
/freebsd-11-stable/contrib/libstdc++/config/os/aix/
H A Dctype_noninline.h85 { return ::tolower((int) __c); }
92 *__low = ::tolower((int) *__low);
/freebsd-11-stable/contrib/libstdc++/config/os/bsd/darwin/
H A Dctype_noninline.h85 { return ::tolower((int) __c); }
92 *__low = ::tolower((int) *__low);
/freebsd-11-stable/contrib/libstdc++/config/os/bsd/freebsd/
H A Dctype_noninline.h85 { return ::tolower((int) __c); }
92 *__low = ::tolower((int) *__low);

Completed in 210 milliseconds

1234567891011>>