Home
last modified time | relevance | path

Searched refs:TF_BOLD (Results 1 – 8 of 8) sorted by relevance

/NextBSD/sys/sys/
HDterminal.h98 #define FG_DARKGREY (TFORMAT(TF_BOLD) | TCOLOR_FG(TC_BLACK))
99 #define FG_LIGHTBLUE (TFORMAT(TF_BOLD) | TCOLOR_FG(TC_BLUE))
100 #define FG_LIGHTGREEN (TFORMAT(TF_BOLD) | TCOLOR_FG(TC_GREEN))
101 #define FG_LIGHTCYAN (TFORMAT(TF_BOLD) | TCOLOR_FG(TC_CYAN))
102 #define FG_LIGHTRED (TFORMAT(TF_BOLD) | TCOLOR_FG(TC_RED))
103 #define FG_LIGHTMAGENTA (TFORMAT(TF_BOLD) | TCOLOR_FG(TC_MAGENTA))
104 #define FG_YELLOW (TFORMAT(TF_BOLD) | TCOLOR_FG(TC_BROWN))
105 #define FG_WHITE (TFORMAT(TF_BOLD) | TCOLOR_FG(TC_WHITE))
117 #define BG_DARKGREY (TFORMAT(TF_BOLD) | TCOLOR_BG(TC_BLACK))
118 #define BG_LIGHTBLUE (TFORMAT(TF_BOLD) | TCOLOR_BG(TC_BLUE))
[all …]
/NextBSD/sys/teken/
HDteken_subr_compat.h54 t->t_defattr.ta_format |= TF_BOLD; in teken_subr_cons25_set_adapter_foreground()
55 t->t_curattr.ta_format |= TF_BOLD; in teken_subr_cons25_set_adapter_foreground()
57 t->t_defattr.ta_format &= ~TF_BOLD; in teken_subr_cons25_set_adapter_foreground()
58 t->t_curattr.ta_format &= ~TF_BOLD; in teken_subr_cons25_set_adapter_foreground()
69 if (t->t_defattr.ta_format & TF_BOLD) in teken_get_defattr_cons25()
HDteken.h44 #define TF_BOLD 0x01 /* Bold character. */ macro
HDteken_subr.h1140 t->t_curattr.ta_format |= TF_BOLD; in teken_subr_set_graphic_rendition()
1152 t->t_curattr.ta_format &= ~TF_BOLD; in teken_subr_set_graphic_rendition()
/NextBSD/sys/dev/vt/
HDvt_font.c106 if (TCHAR_FORMAT(c) & TF_BOLD) { in vtfont_lookup()
HDvt_core.c1076 if (TCHAR_FORMAT(c) & TF_BOLD) in vt_determine_colors()
/NextBSD/sys/dev/syscons/
HDscterm-teken.c356 a->ta_format |= TF_BOLD; in scteken_revattr()
376 if (a->ta_format & TF_BOLD) in scteken_attr()
/NextBSD/sys/teken/demo/
HDteken_demo.c111 if (px->a.ta_format & TF_BOLD) in printchar()