Lines Matching defs:width
25 int height, int width)
30 if (sx == 0 && dx == 0 && width == next_line) {
31 src = (u8 *)info->screen_base + sy * (width >> 3);
32 dest = (u8 *)info->screen_base + dy * (width >> 3);
33 fb_memmove(dest, src, height * (width >> 3));
38 fb_memmove(dest, src, width >> 3);
46 fb_memmove(dest, src, width >> 3);
54 int sy, int sx, int height, int width)
61 if (sx == 0 && width == next_line) {
63 fb_memset255(dest, height * (width >> 3));
65 fb_memclear(dest, height * (width >> 3));
69 fb_memset255(dest, width >> 3);
71 fb_memclear_small(dest, width >> 3);
77 int dy, int dx, u32 width,
85 for (rows = width / 8; rows--; /* check margins */ ) {