Symbol: UC
bin/csh/dir.c
273
#define ISDOT(c) (UC(c)[0] == '.' && ((UC(c)[1] == '\0') || (UC(c)[1] == '/')))
bin/csh/dir.c
274
#define ISDOTDOT(c) (UC(c)[0] == '.' && ISDOT(&((c)[1])))
common/lib/libc/string/strcspn.c
63
set[UC(*charset) >> 3] |= idx[UC(*charset) & 7];
common/lib/libc/string/strcspn.c
66
if (set[UC(*t) >> 3] & idx[UC(*t) & 7])
common/lib/libc/string/strpbrk.c
70
ADD_TO_SET(UC(*charset));
common/lib/libc/string/strpbrk.c
73
if (IS_IN_SET(UC(*s)))
common/lib/libc/string/strspn.c
63
set[UC(*charset) >> 3] |= idx[UC(*charset) & 7];
common/lib/libc/string/strspn.c
66
if ((set[UC(*t) >> 3] & idx[UC(*t) & 7]) == 0)
games/warp/term.c
176
UC = nullstr; /* UC must not be NULL */
games/warp/term.c
178
UC = Tgetstr("uc"); /* underline a character */
games/warp/term.c
179
if (!*US && !*UC) { /* no underline mode? */
games/warp/term.h
276
EXT char *UC INIT(NULL); /* underline a character, if that's how it's done */
games/warp/term.h
298
#define underchar() do_tc(UC,0)
libexec/ftpd/ftpd.c
2641
UC(a[0]), UC(a[1]), UC(a[2]), UC(a[3]),
libexec/ftpd/ftpd.c
2642
UC(p[0]), UC(p[1]));
libexec/ftpd/ftpd.c
2673
cprintf(stdout, ",%d", UC(a[i]));
libexec/ftpd/ftpd.c
2675
2, UC(p[0]), UC(p[1]));
libexec/ftpd/ftpd.c
3086
reply(227, "Entering Passive Mode (%d,%d,%d,%d,%d,%d)", UC(a[0]),
libexec/ftpd/ftpd.c
3087
UC(a[1]), UC(a[2]), UC(a[3]), UC(p[0]), UC(p[1]));
libexec/ftpd/ftpd.c
3224
4, 4, UC(a[0]), UC(a[1]), UC(a[2]), UC(a[3]),
libexec/ftpd/ftpd.c
3225
2, UC(p[0]), UC(p[1]));
libexec/ftpd/ftpd.c
3233
UC(a[0]), UC(a[1]), UC(a[2]), UC(a[3]),
libexec/ftpd/ftpd.c
3234
UC(a[4]), UC(a[5]), UC(a[6]), UC(a[7]),
libexec/ftpd/ftpd.c
3235
UC(a[8]), UC(a[9]), UC(a[10]), UC(a[11]),
libexec/ftpd/ftpd.c
3236
UC(a[12]), UC(a[13]), UC(a[14]), UC(a[15]),
libexec/ftpd/ftpd.c
3237
2, UC(p[0]), UC(p[1]));
libexec/getty/main.c
368
if (upper || UC)
libexec/getty/main.c
520
if ((upper && !lower && !LC) || UC)
libexec/getty/subr.c
273
if (UC)
share/examples/refuse/ian/libfetch/ftp.c
851
UC(ap[0]), UC(ap[1]), UC(ap[2]), UC(ap[3]),
share/examples/refuse/ian/libfetch/ftp.c
852
UC(ap[4]), UC(ap[5]), UC(ap[6]), UC(ap[7]),
share/examples/refuse/ian/libfetch/ftp.c
853
UC(ap[8]), UC(ap[9]), UC(ap[10]), UC(ap[11]),
share/examples/refuse/ian/libfetch/ftp.c
854
UC(ap[12]), UC(ap[13]), UC(ap[14]), UC(ap[15]),
sys/arch/x68k/stand/common/xprintf.c
44
#define IS_SJIS1(c) ((UC(c) > 0x80 && UC(c) < 0xa0) || \
sys/arch/x68k/stand/common/xprintf.c
45
(UC(c) >= 0xe0 && UC(c) <= 0xfc))
sys/arch/x68k/stand/common/xprintf.c
46
#define IS_SJIS2(c) (UC(c) >= 0x40 && UC(c) <= 0xfc && UC(c) != 0x7f)
sys/dev/ipmi.c
1610
if ((valid & (UC|UW)) == (UC|UW) && data[5] < data[4])
sys/dev/ipmi.c
1611
valid ^= UC;
sys/dev/ipmi.c
1624
if (valid & UC && data[5] != 0xff) {
usr.bin/ftp/ftp.c
1506
UC(addr[i]);
usr.bin/ftp/ftp.c
1673
UC(a[0]), UC(a[1]), UC(a[2]), UC(a[3]),
usr.bin/ftp/ftp.c
1674
UC(p[0]), UC(p[1]));
usr.sbin/faithd/ftp.c
559
6, 16, UC(a[0]), UC(a[1]), UC(a[2]), UC(a[3]),
usr.sbin/faithd/ftp.c
560
UC(a[4]), UC(a[5]), UC(a[6]), UC(a[7]),
usr.sbin/faithd/ftp.c
561
UC(a[8]), UC(a[9]), UC(a[10]), UC(a[11]),
usr.sbin/faithd/ftp.c
562
UC(a[12]), UC(a[13]), UC(a[14]), UC(a[15]),
usr.sbin/faithd/ftp.c
563
2, UC(p[0]), UC(p[1]));
usr.sbin/faithd/ftp.c
735
UC(a[0]), UC(a[1]), UC(a[2]), UC(a[3]), UC(p[0]), UC(p[1]));