Lines Matching full:height

67 	cmd[5] = (area->height << 16) | area->width;  in mb86290fb_copyarea()
76 u16 width, u16 height, u32 fgcolor, in mb86290fb_imageblit1() argument
101 (GDC_CMD_BITMAP << 16) | (2 + (step * height)); in mb86290fb_imageblit1()
103 cmd[8] = (height << 16) | width; in mb86290fb_imageblit1()
105 while (i < height) { in mb86290fb_imageblit1()
125 u16 width, u16 height, u32 fgcolor, in mb86290fb_imageblit8() argument
134 (GDC_CMD_BLT_DRAW << 16) | (2 + (height * step)); in mb86290fb_imageblit8()
136 cmd[2] = (height << 16) | width; in mb86290fb_imageblit8()
142 while (i < height) { in mb86290fb_imageblit8()
164 u16 width, u16 height, u32 fgcolor, in mb86290fb_imageblit16() argument
177 (GDC_CMD_BLT_DRAW << 16) | (2 + step * height); in mb86290fb_imageblit16()
179 cmd[2] = (height << 16) | width; in mb86290fb_imageblit16()
181 while (i < height) { in mb86290fb_imageblit16()
199 u16 width = image->width, height = image->height; in mb86290fb_imageblit() local
205 y2 = image->dy + image->height; in mb86290fb_imageblit()
211 height = y2 - dy; in mb86290fb_imageblit()
216 cmdlen = 9 + height * step; in mb86290fb_imageblit()
233 cmdlen = 3 + height * step; in mb86290fb_imageblit()
239 cmdlen = 3 + height * step; 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()
273 y2 = rect->dy + rect->height; in mb86290fb_fillrect()
277 height = y2 - rect->dy; in mb86290fb_fillrect()
305 cmd[6] = (height << 16) | width; in mb86290fb_fillrect()