Lines Matching refs:width
67 cmd[5] = (area->height << 16) | area->width; in mb86290fb_copyarea()
76 u16 width, u16 height, u32 fgcolor, in mb86290fb_imageblit1() argument
97 bytes = (image->width + 7) >> 3; in mb86290fb_imageblit1()
103 cmd[8] = (height << 16) | width; in mb86290fb_imageblit1()
125 u16 width, u16 height, u32 fgcolor, in mb86290fb_imageblit8() argument
136 cmd[2] = (height << 16) | width; in mb86290fb_imageblit8()
140 bytes = image->width; in mb86290fb_imageblit8()
164 u16 width, u16 height, u32 fgcolor, in mb86290fb_imageblit16() argument
174 bytes = image->width << 1; in mb86290fb_imageblit16()
179 cmd[2] = (height << 16) | width; in mb86290fb_imageblit16()
199 u16 width = image->width, height = image->height; in mb86290fb_imageblit() local
204 x2 = image->dx + image->width; in mb86290fb_imageblit()
210 width = x2 - dx; in mb86290fb_imageblit()
215 step = (width + 31) >> 5; in mb86290fb_imageblit()
232 step = (width + 1) >> 1; in mb86290fb_imageblit()
238 step = (width + 1) >> 1; in mb86290fb_imageblit()
251 cmdfn(cmd, step, dx, dy, width, height, fgcolor, bgcolor, image, info); in mb86290fb_imageblit()
260 u32 x2, y2, vxres, vyres, height, width, fg; in mb86290fb_fillrect() local
266 if (!rect->width || !rect->height || rect->dx > vxres in mb86290fb_fillrect()
272 x2 = rect->dx + rect->width; in mb86290fb_fillrect()
276 width = x2 - rect->dx; in mb86290fb_fillrect()
305 cmd[6] = (height << 16) | width; in mb86290fb_fillrect()