Lines Matching refs:col
498 int col; in tridentfb_fillrect() local
505 col = fr->color; in tridentfb_fillrect()
506 col |= col << 8; in tridentfb_fillrect()
507 col |= col << 16; in tridentfb_fillrect()
509 col = ((u32 *)(info->pseudo_palette))[fr->color]; in tridentfb_fillrect()
513 fr->height, col, fr->rop); in tridentfb_fillrect()
520 int col, bgcol; in tridentfb_imageblit() local
527 col = img->fg_color; in tridentfb_imageblit()
528 col |= col << 8; in tridentfb_imageblit()
529 col |= col << 16; in tridentfb_imageblit()
534 col = ((u32 *)(info->pseudo_palette))[img->fg_color]; in tridentfb_imageblit()
541 img->width, img->height, col, bgcol); in tridentfb_imageblit()
1257 u32 col; in tridentfb_setcolreg() local
1259 col = (red & 0xF800) | ((green & 0xFC00) >> 5) | in tridentfb_setcolreg()
1261 col |= col << 16; in tridentfb_setcolreg()
1262 ((u32 *)(info->pseudo_palette))[regno] = col; in tridentfb_setcolreg()