Lines Matching refs:height
63 cmd[5] = (area->height << 16) | area->width; in mb86290fb_copyarea()
72 u16 width, u16 height, u32 fgcolor, in mb86290fb_imageblit1() argument
97 (GDC_CMD_BITMAP << 16) | (2 + (step * height)); in mb86290fb_imageblit1()
99 cmd[8] = (height << 16) | width; in mb86290fb_imageblit1()
101 while (i < height) { in mb86290fb_imageblit1()
121 u16 width, u16 height, u32 fgcolor, in mb86290fb_imageblit8() argument
130 (GDC_CMD_BLT_DRAW << 16) | (2 + (height * step)); in mb86290fb_imageblit8()
132 cmd[2] = (height << 16) | width; in mb86290fb_imageblit8()
138 while (i < height) { in mb86290fb_imageblit8()
160 u16 width, u16 height, u32 fgcolor, in mb86290fb_imageblit16() argument
173 (GDC_CMD_BLT_DRAW << 16) | (2 + step * height); in mb86290fb_imageblit16()
175 cmd[2] = (height << 16) | width; in mb86290fb_imageblit16()
177 while (i < height) { in mb86290fb_imageblit16()
194 u16 width = image->width, height = image->height; in mb86290fb_imageblit() local
199 y2 = image->dy + image->height; in mb86290fb_imageblit()
205 height = y2 - dy; in mb86290fb_imageblit()
210 cmdlen = 9 + height * step; in mb86290fb_imageblit()
227 cmdlen = 3 + height * step; in mb86290fb_imageblit()
233 cmdlen = 3 + height * step; in mb86290fb_imageblit()
245 cmdfn(cmd, step, dx, dy, width, height, fgcolor, bgcolor, image, info); in mb86290fb_imageblit()
254 u32 x2, y2, vxres, vyres, height, width, fg; in mb86290fb_fillrect() local
260 if (!rect->width || !rect->height || rect->dx > vxres in mb86290fb_fillrect()
267 y2 = rect->dy + rect->height; in mb86290fb_fillrect()
271 height = y2 - rect->dy; in mb86290fb_fillrect()
299 cmd[6] = (height << 16) | width; in mb86290fb_fillrect()