Lines Matching full:bgcol
70 uint8_t bgcol:4;
468 printf(" fg: %d bg: %d ch:'%2X' '%c'\n", t_attrib->fgcol, t_attrib->bgcol, ch, ch);
479 unsigned int fgcol, bgcol;
487 bgcol = color_table[t_attrib->bold][t_attrib->fgcol];
488 fgcol = color_table[t_attrib->bold][t_attrib->bgcol];
491 bgcol = color_table[t_attrib->bold][t_attrib->bgcol];
499 xorcol = bgcol ^ fgcol;
508 ((uint32_t *)d)[0] = (dmask16[(font_data >> 4)] & xorcol) ^ bgcol;
509 ((uint32_t *)d)[1] = (dmask16[(font_data >> 0) & 0xf] & xorcol) ^ bgcol;
521 ((uint32_t *)d)[0] = (dmask4[(font_data >> 6)] & xorcol) ^ bgcol;
522 ((uint32_t *)d)[1] = (dmask4[(font_data >> 4) & 3] & xorcol) ^ bgcol;
523 ((uint32_t *)d)[2] = (dmask4[(font_data >> 2) & 3] & xorcol) ^ bgcol;
524 ((uint32_t *)d)[3] = (dmask4[(font_data >> 0) & 3] & xorcol) ^ bgcol;
534 ((uint32_t *)d)[0] = (-((font_data >> 7)) & xorcol) ^ bgcol;
535 ((uint32_t *)d)[1] = (-((font_data >> 6) & 1) & xorcol) ^ bgcol;
536 ((uint32_t *)d)[2] = (-((font_data >> 5) & 1) & xorcol) ^ bgcol;
537 ((uint32_t *)d)[3] = (-((font_data >> 4) & 1) & xorcol) ^ bgcol;
538 ((uint32_t *)d)[4] = (-((font_data >> 3) & 1) & xorcol) ^ bgcol;
539 ((uint32_t *)d)[5] = (-((font_data >> 2) & 1) & xorcol) ^ bgcol;
540 ((uint32_t *)d)[6] = (-((font_data >> 1) & 1) & xorcol) ^ bgcol;
541 ((uint32_t *)d)[7] = (-((font_data >> 0) & 1) & xorcol) ^ bgcol;
763 color_table[0][s->t_attrib_default.bgcol]);
842 s->t_attrib.bgcol=COLOR_BLACK;
845 s->t_attrib.bgcol=COLOR_RED;
848 s->t_attrib.bgcol=COLOR_GREEN;
851 s->t_attrib.bgcol=COLOR_YELLOW;
854 s->t_attrib.bgcol=COLOR_BLUE;
857 s->t_attrib.bgcol=COLOR_MAGENTA;
860 s->t_attrib.bgcol=COLOR_CYAN;
863 s->t_attrib.bgcol=COLOR_WHITE;
1263 (s->cells[src].t_attrib.bgcol << 8) |
1536 s->t_attrib_default.bgcol = COLOR_BLACK;
1545 s->t_attrib.bgcol = COLOR_BLUE;