Lines Matching refs:fg
268 static inline void expand8_2col2mask(u8 fg, u8 bg, u32 fgm[], u32 bgm[])
270 fgm[0] = four2long[fg & 15] ^ (bgm[0] = four2long[bg & 15]);
272 fgm[1] = four2long[fg >> 4] ^ (bgm[1] = four2long[bg >> 4]);
300 static inline void fill8_2col(u8 *dst, u8 fg, u8 bg, u32 mask)
304 expand8_2col2mask(fg, bg, fgm, bgm);
342 static inline void expand16_2col2mask(u8 fg, u8 bg, u32 fgm[], u32 bgm[])
345 fgm[0] = two2word[fg & 3] ^ bgm[0];
348 fgm[1] = two2word[(fg >> 2) & 3] ^ bgm[1];
352 fgm[2] = two2word[(fg >> 4) & 3] ^ bgm[2];
354 fgm[3] = two2word[fg >> 6] ^ bgm[3];