Lines Matching refs:dest
27 u8 *src, *dest; in atafb_mfb_copyarea() local
32 dest = (u8 *)info->screen_base + dy * (width >> 3); in atafb_mfb_copyarea()
33 fb_memmove(dest, src, height * (width >> 3)); in atafb_mfb_copyarea()
36 dest = (u8 *)info->screen_base + dy * next_line + (dx >> 3); in atafb_mfb_copyarea()
38 fb_memmove(dest, src, width >> 3); in atafb_mfb_copyarea()
40 dest += next_line; in atafb_mfb_copyarea()
44 dest = (u8 *)info->screen_base + (dy + height - 1) * next_line + (dx >> 3); in atafb_mfb_copyarea()
46 fb_memmove(dest, src, width >> 3); in atafb_mfb_copyarea()
48 dest -= next_line; in atafb_mfb_copyarea()
56 u8 *dest; in atafb_mfb_fillrect() local
59 dest = (u8 *)info->screen_base + sy * next_line + (sx >> 3); in atafb_mfb_fillrect()
63 fb_memset255(dest, height * (width >> 3)); in atafb_mfb_fillrect()
65 fb_memclear(dest, height * (width >> 3)); in atafb_mfb_fillrect()
67 for (rows = height; rows--; dest += next_line) { in atafb_mfb_fillrect()
69 fb_memset255(dest, width >> 3); in atafb_mfb_fillrect()
71 fb_memclear_small(dest, width >> 3); in atafb_mfb_fillrect()
80 u8 *dest; in atafb_mfb_linefill() local
83 dest = (u8 *)info->screen_base + dy * next_line + (dx >> 3); in atafb_mfb_linefill()
87 *dest++ = *data++; in atafb_mfb_linefill()