Home | History | Annotate | Download | only in rasops

Lines Matching refs:fg

92 	uint32_t bg, fg, lbg, rbg, clr[2], lmask, rmask, tmp;
124 fg = ATTR_FG(ri, attr);
126 /* If fg and bg match this becomes a space character */
127 if (uc == ' ' || __predict_false(fg == bg)) {
153 clr[1] = fg & COLOR_MASK;
186 tmp = (*rp & lmask) | (fg & rmask);
236 clr[1] = fg & COLOR_MASK;
288 *bp = (*bp & lmask) | (fg & ~lmask);
292 *bp++ = fg;
294 *bp = (*bp & rmask) | (fg & ~rmask);