Symbol: tolower
bin/csh/char.h
80
#define Tolower(c) (((c) & QUOTE) ? 0 : tolower((unsigned char) (c)))
bin/dd/dd.c
294
casetab[cnt] = tolower(ctab[cnt]);
bin/dd/dd.c
302
casetab[cnt] = tolower(cnt);
bin/ksh/emacs.c
2113
*cp = tolower((unsigned char)*cp);
bin/ksh/emacs.c
2129
*cp = tolower((unsigned char)*cp);
bin/ksh/var.c
578
*q = tolower((unsigned char)*q);
bin/ksh/vi.c
1104
*p = tolower((unsigned char)*p);
bin/ps/keyword.c
370
*dp = tolower((unsigned char)*dp);
common/lib/libc/string/strcasecmp.c
68
while (tolower(*us1) == tolower(*us2++))
common/lib/libc/string/strcasecmp.c
71
return (tolower(*us1) - tolower(*--us2));
common/lib/libc/string/strncasecmp.c
71
if (tolower(*us1) != tolower(*us2++))
common/lib/libc/string/strncasecmp.c
72
return (tolower(*us1) - tolower(*--us2));
distrib/utils/libhack/multibyte.c
309
return tolower(wc & 0xFF);
distrib/utils/more/prim.c
642
*p = tolower((unsigned char)*p);
distrib/utils/more/prim.c
795
tolower((unsigned char)*p) : *p;
games/battlestar/getcom.c
93
tolower((unsigned char)*buf1++);
games/fortune/strfile/strfile.c
210
fp->first = tolower((unsigned char)*nsp);
games/fortune/strfile/strfile.c
410
c1 = tolower(c1);
games/fortune/strfile/strfile.c
412
c2 = tolower(c2);
games/hangman/getguess.c
62
ch = tolower(ch);
games/hunt/hunt/hunt.c
585
ch = tolower(ch);
games/hunt/hunt/playit.c
301
ch = tolower(ch);
games/hunt/hunt/playit.c
316
ch = tolower(ch);
games/hunt/hunt/playit.c
389
ch = tolower(ch);
games/monop/getinp.c
111
c = tolower((unsigned char)*tsp);
games/monop/getinp.c
89
*sp = tolower((unsigned char)*sp);
games/pig/pig.c
117
buf[0] = tolower((unsigned char)buf[0]);
games/quiz/quiz.c
369
*p = tolower(ch);
games/quiz/rxp.c
217
ch = isascii(*rp) && isupper(*rp) ? tolower(*rp) : *rp;
games/robots/move.c
167
Run_ch = tolower(c);
games/sail/misc.c
192
return sp->file->FS ? flag : tolower((unsigned char)flag);
games/sail/pl_4.c
98
if ((tolower((unsigned char)c) == *buf || colours(sp) == *buf)
games/worm/worm.c
296
case 'H': x--; running = RUNLEN; ch = tolower(ch); break;
games/worm/worm.c
297
case 'J': y++; running = RUNLEN/2; ch = tolower(ch); break;
games/worm/worm.c
298
case 'K': y--; running = RUNLEN/2; ch = tolower(ch); break;
games/worm/worm.c
299
case 'L': x++; running = RUNLEN; ch = tolower(ch); break;
include/ctype.h
57
int tolower(int);
lib/libc/gen/dehumanize_number.c
79
switch (tolower((unsigned char)unit)) {
lib/libc/gen/fnmatch.c
67
return tolower(ch);
lib/libc/gen/getpass.c
275
c = tolower((unsigned char)c);
lib/libc/gen/unvis.c
78
#define xtod(c) (isdigit(c) ? (c - '0') : ((tolower(c) - 'a') + 10))
lib/libc/inet/inet_net_pton.c
88
ch = tolower((u_char)ch);
lib/libc/nameser/ns_name.c
391
*dn++ = tolower(c);
lib/libc/nameser/ns_ttl.c
92
*p = tolower(ch);
lib/libc/net/rcmd.c
797
tolower((unsigned char)*p) : *p;
lib/libc/regex/utils.h
57
#define towlower(a) tolower(a)
lib/libc/rpc/rpc_generic.c
206
*p = tolower(*p);
lib/libc/string/strcasestr.c
58
c = tolower((unsigned char)c);
lib/libc/string/strcasestr.c
64
} while ((char)tolower((unsigned char)sc) != c);
lib/libform/type_ipv4.c
192
return (isxdigit(c) || (c == '.') || (tolower(c) == 'x') ||
lib/libresolv/res_mkupdate.c
874
n = n * 16 + (tolower(c) - 'a' + 10);
lib/libskey/skeylogin.c
472
*p = tolower((u_char)*p);
lib/libskey/skeysubr.c
515
*p = tolower(*p);
lib/libtelnet/genget.c
45
#define LOWER(x) (isupper((unsigned char)x) ? tolower((unsigned char)x) : (x))
lib/libutil/parsedate.y
974
*p = tolower((unsigned char)*p);
libexec/ftpd/ftpd.c
3823
pbuf[0] = tolower(
libexec/getty/main.c
522
*np = tolower((unsigned char)*np);
libexec/telnetd/state.c
1153
c = tolower(c);
libexec/tftpd/tftpd.c
612
*cp = tolower((unsigned char)*cp);
libexec/tftpd/tftpd.c
679
*cp = tolower((unsigned char)*cp);
sbin/ifconfig/util.c
116
#define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10)
sbin/ifconfig/util.c
139
if (len < 2 || buf[0] != '0' || tolower(buf[1]) != 'x') {
sbin/ifconfig/util.c
91
hexstr = hexok && val[0] == '0' && tolower((u_char)val[1]) == 'x';
sbin/ping6/ping6.c
2481
*q = tolower(*(unsigned char *)q);
sbin/veriexecctl/veriexecctl_parse.y
223
value += 10 + tolower((unsigned char) cv) - 'a'; \
share/examples/puffs/icfs/icfs.c
73
*buf = tolower((unsigned char)*buf);
share/examples/refuse/ian/libfetch/http.c
158
10 + tolower((unsigned)*p) - 'a';
share/examples/refuse/ian/libfetch/http.c
439
while (*str && *hdr && tolower((unsigned)*str++) == tolower((unsigned)*hdr++))
share/examples/refuse/icfs/icfs.c
75
*np = tolower((unsigned)*cp);
sys/arch/arm/sunxi/sunxi_gpio.c
781
const char c = tolower(pin_def->name[1]);
sys/arch/atari/stand/bootxx/bootxx.c
156
c = tolower(c);
sys/arch/atari/stand/tostools/aptck/diskio.c
247
snprintf(sn, sizeof(sn), "%c%d%d", tolower(*bs), u, l);
sys/arch/atari/stand/tostools/libtos/diskio.c
247
snprintf(sn, sizeof(sn), "%c%d%d", tolower(*bs), u, l);
sys/arch/hpc/stand/libsa/libsa_string.h
37
char tolower(char);
sys/arch/hpc/stand/libsa/stricmp.cpp
43
while (libsa::tolower(*s1) == libsa::tolower(*s2++))
sys/arch/hpc/stand/libsa/stricmp.cpp
47
return libsa::tolower(*s1) - libsa::tolower(*--s2);
sys/arch/hppa/stand/common/lif.c
112
if (tolower(*q) != tolower(*p))
sys/arch/macppc/dev/smusat.c
208
sysctl_sensor_name[j] = tolower(sensor->location[j]);
sys/arch/prep/stand/boot/devopen.c
72
if (isupper(*s)) *s = tolower(*s);
sys/arch/rs6000/stand/boot/devopen.c
72
if (isupper(*s)) *s = tolower(*s);
sys/arch/sandpoint/stand/altboot/main.c
732
if (tolower((unsigned)buf[0]) == 'x')
sys/arch/sandpoint/stand/altboot/main.c
793
if (buf[0] == '0' && tolower((unsigned)buf[1]) == 'x') {
sys/ddb/db_write_cmd.c
59
switch (tolower((unsigned char)modif[0])) {
sys/dev/acpi/sony_acpi.c
178
*ptr = tolower(*ptr);
sys/dev/ic/sl811hs.c
2896
switch (tolower((int)c)) {
sys/dev/microcode/aic7xxx/aicasm_symbol.c
394
*letter = tolower(*letter);
sys/dev/pci/mly.c
1161
class = tolower(class);
sys/lib/libkern/libkern.h
82
LIBKERN_INLINE int tolower(int) __unused;
sys/netinet6/icmp6.c
1609
*cp++ = tolower(*p);
tests/lib/libc/gen/h_ctype_abuse.c
66
M(TOLOWER, tolower)
tests/lib/libc/gen/t_ctype.c
1043
DEF_TEST_ABUSE(tolower)
tests/lib/libc/gen/t_ctype.c
1058
DEF_TEST_ABUSE_OVERRIDE(tolower)
tests/lib/libc/gen/t_ctype.c
1073
DEF_TEST_USE(tolower)
tests/lib/libc/gen/t_ctype.c
1110
ATF_CHECK_MSG((ch = tolower(ydots)) == ydots, "ch=0x%x", ch);
tests/lib/libc/gen/t_ctype.c
1145
ATF_CHECK_MSG((ch = tolower(Hard)) == hard, "ch=0x%x", ch);
tests/lib/libc/gen/t_ctype.c
1180
ATF_CHECK_MSG((ch = tolower(ya)) == ya, "ch=0x%x", ch);
tests/lib/libc/gen/t_ctype.c
1199
ADD_TEST_ABUSE(tp, tolower);
tests/lib/libc/gen/t_ctype.c
1214
ADD_TEST_ABUSE_OVERRIDE(tp, tolower);
tests/lib/libc/gen/t_ctype.c
1229
ADD_TEST_USE(tp, tolower);
tests/lib/libc/gen/t_ctype.c
91
static int tolower_wrapper(int ch) { return tolower(ch); }
tests/lib/libc/locale/t_toupper.c
106
ATF_TC(tolower);
tests/lib/libc/locale/t_toupper.c
108
ATF_TC_HEAD(tolower, tc)
tests/lib/libc/locale/t_toupper.c
114
ATF_TC_BODY(tolower, tc)
tests/lib/libc/locale/t_toupper.c
128
ATF_TP_ADD_TC(tp, tolower);
tests/lib/libc/locale/t_toupper.c
83
reported = tolower((int)(unsigned char)t->upper[i]);
tests/lib/libc/net/h_dns_server.c
132
if (tolower(a[i]) != tolower(b[i]))
tests/usr.bin/xlint/lint1/msg_342.c
29
int tolower(int);
tests/usr.bin/xlint/lint1/msg_342.c
65
tolower(c);
usr.bin/apropos/apropos.c
258
*to++ = tolower((unsigned char)ch);
usr.bin/btkey/btkey.c
258
*p != tolower((unsigned char)*arg) ;
usr.bin/config/main.c
1798
*p++ = (char)(isupper((u_char)c) ? tolower((u_char)c) : c);
usr.bin/db/db.c
445
*p = tolower((unsigned char)*p);
usr.bin/diff/diffreg.c
241
return (tolower(c));
usr.bin/from/from.c
141
ch = tolower((unsigned char)ch);
usr.bin/from/from.c
147
ch = tolower((unsigned char)*t++);
usr.bin/from/from.c
79
*p = tolower((unsigned char)*p);
usr.bin/fsplit/fsplit.c
356
*iptr = tolower((unsigned char)*p);
usr.bin/ftp/cmds.c
183
switch (tolower((unsigned char)*cline)) {
usr.bin/ftp/cmds.c
1938
dst[i] = tolower((unsigned char)dst[i]);
usr.bin/ftp/fetch.c
1101
if (tolower((unsigned char)reply[0]) != 'y')
usr.bin/ftp/util.c
1055
switch (tolower((unsigned char)cp[0])) {
usr.bin/lam/lam.c
128
switch (tolower((unsigned char) *c)) {
usr.bin/look/look.c
84
#define FOLD(c) (isascii(c) && isupper(c) ? tolower(c) : (c))
usr.bin/mail/support.c
305
*dest++ = tolower((unsigned char)*src);
usr.bin/make/make.h
1201
ch_tolower(char ch) { return (char)tolower((unsigned char)ch); }
usr.bin/newsyslog/newsyslog.c
1018
if (tolower((unsigned char)*s) == 'l') {
usr.bin/skeyinit/skeyinit.c
245
*p = tolower((unsigned char)*p);
usr.bin/sort/init.c
435
Ftable[tolower(i)] = next_weight;
usr.bin/sort/init.c
436
RFtable[tolower(i)] = rev_weight;
usr.bin/spell/spellprog/spellprog.c
403
*dp = tolower((unsigned char)*cp);
usr.bin/spell/spellprog/spellprog.c
410
*dp = tolower((unsigned char)*dp);
usr.bin/spell/spellprog/spellprog.c
412
word[0] = tolower((unsigned char)word[0]);
usr.bin/spell/spellprog/spellprog.c
682
if (tolower((unsigned char)*bp) != *cp)
usr.bin/spell/spellprog/spellprog.c
793
switch (tolower(c)) {
usr.bin/systat/keyboard.c
161
line[i] = tolower((unsigned char)line[i]);
usr.bin/tip/aculib/ventel.c
113
*cp = tolower((unsigned char)*cp);
usr.bin/unzip/unzip.c
232
str[i] = tolower((unsigned char)path[i]);
usr.bin/vgrind/regexp.c
63
#define makelower(c) (isupper((unsigned char)(c)) ? tolower((unsigned char)(c)) : (c))
usr.bin/whois/whois.c
270
*p = tolower((unsigned char)*p);
usr.sbin/bootp/common/readfile.c
1548
*s = tolower((unsigned char)*s);
usr.sbin/grfconfig/grfconfig.c
149
*tbuf2 = tolower((unsigned char)*tbuf2);
usr.sbin/makemandb/apropos-utils.c
118
str[i++] = tolower((unsigned char) c);
usr.sbin/makemandb/custom_apropos_tokenizer.c
648
dupword[i] = tolower((unsigned char) zIn[i]);
usr.sbin/rbootd/parseconf.c
276
i = tolower((unsigned char)*cp) - 'a' + 10;
usr.sbin/rpc.pcnfsd/pcnfsd_print.c
999
*cp2++ = tolower((unsigned char)*cp1);
usr.sbin/rpc.statd/statd.c
250
*ptr = tolower((unsigned char) *ptr);
usr.sbin/rpc.statd/statd.c
284
*ptr = tolower((unsigned char) *ptr);
usr.sbin/sysinst/arch/mac68k/md.c
569
c1 = tolower((unsigned char)*s1++);
usr.sbin/sysinst/arch/mac68k/md.c
570
c2 = tolower((unsigned char)*s2++);
usr.sbin/syslogd/syslogd.c
4071
*p = tolower((unsigned char)*name);
usr.sbin/ypserv/makedbm/makedbm.c
286
*v = tolower((unsigned char)*v);