Symbol: colours
games/sail/extern.h
358
int colours(struct ship *);
games/sail/pl_4.c
90
if ((c == *buf || tolower((unsigned char)c) == *buf || colours(sp) == *buf)
games/sail/pl_7.c
296
(void) waddch(view_w, colours(sp));
games/sail/pl_7.c
462
colours(ms),
games/sail/sync.c
71
ship->shipname, colours(ship), sterncolour(ship));
usr.bin/tmux/colour.c
1167
for (i = 0; i < nitems(colours); i++) {
usr.bin/tmux/colour.c
1168
if (strcasecmp(colours[i].name, name) == 0)
usr.bin/tmux/colour.c
1169
return (colours[i].c|COLOUR_FLAG_RGB);
usr.bin/tmux/colour.c
571
} colours[] = {
usr.bin/tmux/format.c
1529
u_int colours;
usr.bin/tmux/format.c
1536
colours = 16777216;
usr.bin/tmux/format.c
1538
colours = 256;
usr.bin/tmux/format.c
1540
colours = tty_term_number(term, TTYC_COLORS);
usr.bin/tmux/format.c
1541
if (colours < 8)
usr.bin/tmux/format.c
1542
colours = 2;
usr.bin/tmux/format.c
1543
else if (colours < 16)
usr.bin/tmux/format.c
1544
colours = 8;
usr.bin/tmux/format.c
1546
colours = 16;
usr.bin/tmux/format.c
1548
return (format_printf("%u", colours));
usr.bin/tmux/tty.c
2702
u_int colours;
usr.bin/tmux/tty.c
2732
colours = 256;
usr.bin/tmux/tty.c
2734
colours = tty_term_number(tty->term, TTYC_COLORS);
usr.bin/tmux/tty.c
2739
if (colours >= 256)
usr.bin/tmux/tty.c
2745
if (colours >= 16)
usr.bin/tmux/tty.c
2761
if (gc->fg >= 90 && gc->fg <= 97 && colours < 16) {
usr.bin/tmux/tty.c
2772
u_int colours;
usr.bin/tmux/tty.c
2793
colours = 256;
usr.bin/tmux/tty.c
2795
colours = tty_term_number(tty->term, TTYC_COLORS);
usr.bin/tmux/tty.c
2804
if (colours >= 256)
usr.bin/tmux/tty.c
2810
if (colours >= 16)
usr.bin/tmux/tty.c
2816
if (gc->bg >= 90 && gc->bg <= 97 && colours < 16)