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

1234567891011

/freebsd-9.3-release/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-9.3-release/lib/libstand/
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-9.3-release/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-9.3-release/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-9.3-release/crypto/heimdal/appl/telnet/libtelnet/
H A Dgenget.c41 #define LOWER(x) (isupper(x) ? tolower(x) : (x))
60 while (tolower((unsigned char)c1) == tolower((unsigned char)c2)) {
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dstrlwr.c50 *s = tolower((unsigned char)*s);
/freebsd-9.3-release/contrib/libstdc++/include/c_std/
H A Dstd_cctype.h65 #undef tolower macro
81 using ::tolower;
/freebsd-9.3-release/usr.bin/locate/locate/
H A Dlocate.h63 define TOLOWER(ch) tolower(ch)
/freebsd-9.3-release/usr.bin/csup/
H A Dfnmatch.c136 (tolower((unsigned char)c) ==
137 tolower((unsigned char)*string)))
168 test = tolower((unsigned char)test);
177 c = tolower((unsigned char)c);
188 c2 = tolower((unsigned char)c2);
/freebsd-9.3-release/contrib/libstdc++/include/c_compatibility/
H A Dctype.h46 using std::tolower;
/freebsd-9.3-release/lib/libutil/
H A Dexpand_number.c64 switch (tolower((unsigned char)*endptr)) {
/freebsd-9.3-release/sys/sys/
H A Dctype.h54 #define tolower(c) ((c) + 0x20 * (((c) >= 'A') && ((c) <= 'Z'))) macro
/freebsd-9.3-release/contrib/libstdc++/config/os/aix/
H A Dctype_noninline.h85 { return ::tolower((int) __c); }
92 *__low = ::tolower((int) *__low);
/freebsd-9.3-release/contrib/libstdc++/config/os/bsd/darwin/
H A Dctype_noninline.h85 { return ::tolower((int) __c); }
92 *__low = ::tolower((int) *__low);
/freebsd-9.3-release/contrib/libstdc++/config/os/bsd/freebsd/
H A Dctype_noninline.h85 { return ::tolower((int) __c); }
92 *__low = ::tolower((int) *__low);
/freebsd-9.3-release/contrib/libstdc++/config/os/bsd/netbsd/
H A Dctype_noninline.h87 { return ::tolower((int) __c); }
94 *__low = ::tolower((int) *__low);
/freebsd-9.3-release/contrib/libstdc++/config/os/generic/
H A Dctype_noninline.h86 { return ::tolower((int) __c); }
93 *__low = ::tolower((int) *__low);
/freebsd-9.3-release/contrib/libstdc++/config/os/hpux/
H A Dctype_noninline.h86 { return ::tolower((int) __c); }
93 *__low = ::tolower((int) *__low);
/freebsd-9.3-release/contrib/libstdc++/config/os/qnx/qnx6.1/
H A Dctype_noninline.h83 { return ::tolower((int) __c); }
90 *__low = ::tolower((int) *__low);
/freebsd-9.3-release/contrib/libstdc++/config/os/windiss/
H A Dctype_noninline.h86 { return ::tolower((int) __c); }
93 *__low = ::tolower((int) *__low);

Completed in 100 milliseconds

1234567891011