Lines Matching refs:col
619 int col; in tridentfb_fillrect() local
626 col = fr->color; in tridentfb_fillrect()
627 col |= col << 8; in tridentfb_fillrect()
628 col |= col << 16; in tridentfb_fillrect()
630 col = ((u32 *)(info->pseudo_palette))[fr->color]; in tridentfb_fillrect()
634 fr->height, col, fr->rop); in tridentfb_fillrect()
641 int col, bgcol; in tridentfb_imageblit() local
648 col = img->fg_color; in tridentfb_imageblit()
649 col |= col << 8; in tridentfb_imageblit()
650 col |= col << 16; in tridentfb_imageblit()
655 col = ((u32 *)(info->pseudo_palette))[img->fg_color]; in tridentfb_imageblit()
662 img->width, img->height, col, bgcol); in tridentfb_imageblit()
1384 u32 col; in tridentfb_setcolreg() local
1386 col = (red & 0xF800) | ((green & 0xFC00) >> 5) | in tridentfb_setcolreg()
1388 col |= col << 16; in tridentfb_setcolreg()
1389 ((u32 *)(info->pseudo_palette))[regno] = col; in tridentfb_setcolreg()