Lines Matching refs:dest
459 u8 __iomem *dest; in hgafb_fillrect() local
464 dest = rowaddr(info, y) + (rect->dx >> 3); in hgafb_fillrect()
467 memset_io(dest, rect->color, (rect->width >> 3)); in hgafb_fillrect()
470 fb_writeb(~(fb_readb(dest)), dest); in hgafb_fillrect()
480 u8 __iomem *dest; in hgafb_copyarea() local
488 dest = rowaddr(info, y2) + (area->dx >> 3); in hgafb_copyarea()
489 memmove(dest, src, (area->width >> 3)); in hgafb_copyarea()
499 dest = rowaddr(info, y2) + (area->dx >> 3); in hgafb_copyarea()
500 memmove(dest, src, (area->width >> 3)); in hgafb_copyarea()
509 u8 __iomem *dest; in hgafb_imageblit() local
518 dest = rowaddr(info, y) + ((image->dx + x)>> 3); in hgafb_imageblit()
519 fb_writeb(d, dest); in hgafb_imageblit()