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

1234567891011

/freebsd-13-stable/contrib/netbsd-tests/usr.bin/awk/
H A Dd_tolower.awk4 print tolower($0);
/freebsd-13-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"));
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-13-stable/sys/libkern/
H A Dstrcasecmp.c48 while (tolower(*us1) == tolower(*us2)) {
53 return (tolower(*us1) - tolower(*us2));
65 if (tolower(*us1) != tolower(*us2))
66 return (tolower(*us1) - tolower(*us2));
H A Dstrcasestr.c57 c = tolower((unsigned char)c);
63 } while ((char)tolower((unsigned char)sc) != c);
H A Dfnmatch.c147 (tolower((unsigned char)c) ==
148 tolower((unsigned char)*string)))
175 test = tolower((unsigned char)test);
194 c = tolower((unsigned char)c);
205 c2 = tolower((unsigned char)c2);
/freebsd-13-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-13-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-13-stable/crypto/heimdal/lib/roken/
H A Dstrlwr.c47 *s = tolower((unsigned char)*s);
/freebsd-13-stable/contrib/mandoc/
H A Dcompat_strcasestr.c60 c = tolower((unsigned char)c);
66 } while ((char)tolower((unsigned char)sc) != c);
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dstrcasestr.c55 c = (char)tolower((unsigned char)c);
61 } while ((char)tolower((unsigned char)sc) != c);
/freebsd-13-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-13-stable/usr.bin/getaddrinfo/
H A Dtables.awk55 printf("\t[AF_%s] = \"%s\",\n", afs[i], tolower(afs[i]));
61 tolower(socktypes[i]));
/freebsd-13-stable/contrib/ncurses/progs/
H A Dtransform.c55 if (tolower(UChar(a[n])) != tolower(UChar(ignore[n - first]))) {
/freebsd-13-stable/contrib/llvm-project/libcxx/include/
H A Dctype.h28 int tolower(int c);
54 #undef tolower macro
/freebsd-13-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-13-stable/usr.bin/locate/locate/
H A Dlocate.h65 define TOLOWER(ch) tolower(ch)
/freebsd-13-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-13-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-13-stable/contrib/apr/strings/
H A Dapr_fnmatch.c140 && (tolower(**string) >= tolower(*startch))
141 && (tolower(**string) <= tolower(**pattern)))
152 && (tolower(**string) == tolower(**pattern)))
179 && (tolower(**string) == tolower(**pattern)))
/freebsd-13-stable/usr.bin/from/
H A Dfrom.c86 *p = tolower(*p);
156 ch = tolower(ch);
162 ch = tolower(*t);
/freebsd-13-stable/contrib/telnet/libtelnet/
H A Dgenget.c45 #define LOWER(x) (isupper(x) ? tolower(x) : (x))

Completed in 294 milliseconds

1234567891011