Home
last modified time | relevance | path

Searched refs:colortab (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/drivers/video/fbdev/core/
H A Dsysimgblt.c196 u32 colortab[16]; in fast_imageblit() local
228 colortab[i] = (tab[i] & eorx) ^ bgx; in fast_imageblit()
243 *dst++ = colortab[(*src >> 4) & bit_mask]; in fast_imageblit()
244 *dst++ = colortab[(*src >> 0) & bit_mask]; in fast_imageblit()
249 *dst++ = colortab[(*src >> 6) & bit_mask]; in fast_imageblit()
250 *dst++ = colortab[(*src >> 4) & bit_mask]; in fast_imageblit()
251 *dst++ = colortab[(*src >> 2) & bit_mask]; in fast_imageblit()
252 *dst++ = colortab[(*src >> 0) & bit_mask]; in fast_imageblit()
257 *dst++ = colortab[(*src >> 7) & bit_mask]; in fast_imageblit()
258 *dst++ = colortab[(*src >> 6) & bit_mask]; in fast_imageblit()
[all …]
H A Dcfbimgblt.c226 u32 colortab[16]; in fast_imageblit() local
258 colortab[i] = (tab[i] & eorx) ^ bgx; in fast_imageblit()
273 FB_WRITEL(colortab[(*src >> 4) & bit_mask], dst++); in fast_imageblit()
274 FB_WRITEL(colortab[(*src >> 0) & bit_mask], dst++); in fast_imageblit()
279 FB_WRITEL(colortab[(*src >> 6) & bit_mask], dst++); in fast_imageblit()
280 FB_WRITEL(colortab[(*src >> 4) & bit_mask], dst++); in fast_imageblit()
281 FB_WRITEL(colortab[(*src >> 2) & bit_mask], dst++); in fast_imageblit()
282 FB_WRITEL(colortab[(*src >> 0) & bit_mask], dst++); in fast_imageblit()
287 FB_WRITEL(colortab[(*src >> 7) & bit_mask], dst++); in fast_imageblit()
288 FB_WRITEL(colortab[(*src >> 6) & bit_mask], dst++); in fast_imageblit()
[all …]
/openbmc/qemu/hw/display/
H A Dssd0303.c216 char colortab[MAGNIFY * 8]; in ssd0303_update_display() local
243 memset(colortab, 0xff, dest_width); in ssd0303_update_display()
244 memset(colortab + dest_width, 0, dest_width); in ssd0303_update_display()
246 colors[0] = colortab; in ssd0303_update_display()
247 colors[1] = colortab; in ssd0303_update_display()
249 colors[0] = colortab; in ssd0303_update_display()
250 colors[1] = colortab + dest_width; in ssd0303_update_display()
252 colors[0] = colortab + dest_width; in ssd0303_update_display()
253 colors[1] = colortab; in ssd0303_update_display()
H A Dssd0323.c195 char colortab[MAGNIFY * 64]; in ssd0323_update_display() local
221 p = colortab; in ssd0323_update_display()