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