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

1234567891011

/freebsd-current/contrib/netbsd-tests/usr.bin/awk/
H A Dd_tolower.awk4 print tolower($0);
/freebsd-current/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.tolowertoomany.d28 trace(tolower("dory", "eel", "roughy"));
H A Derr.D_PROTO_LEN.tolower.d28 trace(tolower());
H A Derr.D_PROTO_LEN.touppertoomany.d28 trace(tolower("haino", "tylo"));
H A Dtst.tolower.d48 /input[i] != NULL && (this->out = tolower(input[i])) != expected[i]/
50 printf("expected tolower(\"%s\") to be \"%s\"; found \"%s\"\n",
58 printf("tolower(\"%s\") is \"%s\", as expected\n",
/freebsd-current/sys/libkern/
H A Dstrcasecmp.c45 while (tolower(*us1) == tolower(*us2)) {
50 return (tolower(*us1) - tolower(*us2));
62 if (tolower(*us1) != tolower(*us2))
63 return (tolower(*us1) - tolower(*us2));
H A Dstrcasestr.c54 c = tolower((unsigned char)c);
60 } while ((char)tolower((unsigned char)sc) != c);
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-current/stand/libsa/
H A Dstrcasecmp.c40 while (tolower(*us1) == tolower(*us2++))
43 return (tolower(*us1) - tolower(*--us2));
55 if (tolower(*us1) != tolower(*us2++))
56 return (tolower(*us1) - tolower(*--us2));
/freebsd-current/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-current/crypto/heimdal/lib/roken/
H A Dstrlwr.c47 *s = tolower((unsigned char)*s);
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dstrcasestr.c55 c = (char)tolower((unsigned char)c);
61 } while ((char)tolower((unsigned char)sc) != c);
/freebsd-current/contrib/mandoc/
H A Dcompat_strcasestr.c53 c = tolower((unsigned char)c);
59 } while ((char)tolower((unsigned char)sc) != c);
/freebsd-current/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-current/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcctype.inc23 using ::tolower;
/freebsd-current/usr.bin/getaddrinfo/
H A Dtables.awk53 printf("\t[AF_%s] = \"%s\",\n", afs[i], tolower(afs[i]));
59 tolower(socktypes[i]));
/freebsd-current/contrib/ncurses/progs/
H A Dtransform.c55 if (tolower(UChar(a[n])) != tolower(UChar(ignore[n - first]))) {
/freebsd-current/lib/libutil/
H A Dexpand_number.c56 switch (tolower((unsigned char)*endptr)) {
92 if (shift != 0 && tolower((unsigned char)*endptr) == 'b')
/freebsd-current/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-current/usr.bin/locate/locate/
H A Dlocate.h58 define TOLOWER(ch) tolower(ch)
/freebsd-current/contrib/llvm-project/libcxx/include/
H A Dctype.h28 int tolower(int c);
56 # undef tolower macro
/freebsd-current/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-current/usr.bin/from/
H A Dfrom.c72 *p = tolower(*p);
142 ch = tolower(ch);
148 ch = tolower(*t);
/freebsd-current/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...]

Completed in 240 milliseconds

1234567891011