Lines Matching full:height
61 cmd[5] = (area->height << 16) | area->width; in mb86290fb_copyarea()
70 u16 width, u16 height, u32 fgcolor, in mb86290fb_imageblit1() argument
95 (GDC_CMD_BITMAP << 16) | (2 + (step * height)); in mb86290fb_imageblit1()
97 cmd[8] = (height << 16) | width; in mb86290fb_imageblit1()
99 while (i < height) { in mb86290fb_imageblit1()
119 u16 width, u16 height, u32 fgcolor, in mb86290fb_imageblit8() argument
128 (GDC_CMD_BLT_DRAW << 16) | (2 + (height * step)); in mb86290fb_imageblit8()
130 cmd[2] = (height << 16) | width; in mb86290fb_imageblit8()
136 while (i < height) { in mb86290fb_imageblit8()
158 u16 width, u16 height, u32 fgcolor, in mb86290fb_imageblit16() argument
171 (GDC_CMD_BLT_DRAW << 16) | (2 + step * height); in mb86290fb_imageblit16()
173 cmd[2] = (height << 16) | width; in mb86290fb_imageblit16()
175 while (i < height) { in mb86290fb_imageblit16()
192 u16 width = image->width, height = image->height; in mb86290fb_imageblit() local
197 y2 = image->dy + image->height; in mb86290fb_imageblit()
203 height = y2 - dy; in mb86290fb_imageblit()
208 cmdlen = 9 + height * step; in mb86290fb_imageblit()
225 cmdlen = 3 + height * step; in mb86290fb_imageblit()
231 cmdlen = 3 + height * step; in mb86290fb_imageblit()
243 cmdfn(cmd, step, dx, dy, width, height, fgcolor, bgcolor, image, info); in mb86290fb_imageblit()
252 u32 x2, y2, vxres, vyres, height, width, fg; in mb86290fb_fillrect() local
258 if (!rect->width || !rect->height || rect->dx > vxres in mb86290fb_fillrect()
265 y2 = rect->dy + rect->height; in mb86290fb_fillrect()
269 height = y2 - rect->dy; in mb86290fb_fillrect()
297 cmd[6] = (height << 16) | width; in mb86290fb_fillrect()