Lines Matching full:step
71 static void mb86290fb_imageblit1(u32 *cmd, u16 step, u16 dx, u16 dy, in mb86290fb_imageblit1() argument
97 (GDC_CMD_BITMAP << 16) | (2 + (step * height)); in mb86290fb_imageblit1()
102 memcpy(&cmd[9 + i * step], line, step << 2); in mb86290fb_imageblit1()
106 for (k = 0; k < step; k++) in mb86290fb_imageblit1()
107 cmd[9 + i * step + k] = in mb86290fb_imageblit1()
108 cpu_to_be32(cmd[9 + i * step + k]); in mb86290fb_imageblit1()
120 static void mb86290fb_imageblit8(u32 *cmd, u16 step, u16 dx, u16 dy, in mb86290fb_imageblit8() argument
130 (GDC_CMD_BLT_DRAW << 16) | (2 + (height * step)); in mb86290fb_imageblit8()
140 for (j = 0; j < step; j++) { in mb86290fb_imageblit8()
141 cmd[3 + i * step + j] = in mb86290fb_imageblit8()
144 cmd[3 + i * step + j] |= in mb86290fb_imageblit8()
159 static void mb86290fb_imageblit16(u32 *cmd, u16 step, u16 dx, u16 dy, in mb86290fb_imageblit16() argument
173 (GDC_CMD_BLT_DRAW << 16) | (2 + step * height); in mb86290fb_imageblit16()
178 memcpy(&cmd[3 + i * step], line, step); in mb86290fb_imageblit16()
193 u16 step; in mb86290fb_imageblit() local
211 step = (width + 31) >> 5; in mb86290fb_imageblit()
212 cmdlen = 9 + height * step; in mb86290fb_imageblit()
228 step = (width + 1) >> 1; in mb86290fb_imageblit()
229 cmdlen = 3 + height * step; in mb86290fb_imageblit()
234 step = (width + 1) >> 1; in mb86290fb_imageblit()
235 cmdlen = 3 + height * step; in mb86290fb_imageblit()
247 cmdfn(cmd, step, dx, dy, width, height, fgcolor, bgcolor, image, info); in mb86290fb_imageblit()