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