Lines Matching refs:dest
28 u8 *src, *dest; in atafb_mfb_copyarea() local
33 dest = (u8 *)info->screen_base + dy * (width >> 3); in atafb_mfb_copyarea()
34 fb_memmove(dest, src, height * (width >> 3)); in atafb_mfb_copyarea()
37 dest = (u8 *)info->screen_base + dy * next_line + (dx >> 3); in atafb_mfb_copyarea()
39 fb_memmove(dest, src, width >> 3); in atafb_mfb_copyarea()
41 dest += next_line; in atafb_mfb_copyarea()
45 dest = (u8 *)info->screen_base + (dy + height - 1) * next_line + (dx >> 3); in atafb_mfb_copyarea()
47 fb_memmove(dest, src, width >> 3); in atafb_mfb_copyarea()
49 dest -= next_line; in atafb_mfb_copyarea()
57 u8 *dest; in atafb_mfb_fillrect() local
60 dest = (u8 *)info->screen_base + sy * next_line + (sx >> 3); in atafb_mfb_fillrect()
64 fb_memset255(dest, height * (width >> 3)); in atafb_mfb_fillrect()
66 fb_memclear(dest, height * (width >> 3)); in atafb_mfb_fillrect()
68 for (rows = height; rows--; dest += next_line) { in atafb_mfb_fillrect()
70 fb_memset255(dest, width >> 3); in atafb_mfb_fillrect()
72 fb_memclear_small(dest, width >> 3); in atafb_mfb_fillrect()
81 u8 *dest; in atafb_mfb_linefill() local
84 dest = (u8 *)info->screen_base + dy * next_line + (dx >> 3); in atafb_mfb_linefill()
88 *dest++ = *data++; in atafb_mfb_linefill()