Lines Matching full:step

69 static void mb86290fb_imageblit1(u32 *cmd, u16 step, u16 dx, u16 dy,  in mb86290fb_imageblit1()  argument
95 (GDC_CMD_BITMAP << 16) | (2 + (step * height)); in mb86290fb_imageblit1()
100 memcpy(&cmd[9 + i * step], line, step << 2); in mb86290fb_imageblit1()
104 for (k = 0; k < step; k++) in mb86290fb_imageblit1()
105 cmd[9 + i * step + k] = in mb86290fb_imageblit1()
106 cpu_to_be32(cmd[9 + i * step + k]); in mb86290fb_imageblit1()
118 static void mb86290fb_imageblit8(u32 *cmd, u16 step, u16 dx, u16 dy, in mb86290fb_imageblit8() argument
128 (GDC_CMD_BLT_DRAW << 16) | (2 + (height * step)); in mb86290fb_imageblit8()
138 for (j = 0; j < step; j++) { in mb86290fb_imageblit8()
139 cmd[3 + i * step + j] = in mb86290fb_imageblit8()
142 cmd[3 + i * step + j] |= in mb86290fb_imageblit8()
157 static void mb86290fb_imageblit16(u32 *cmd, u16 step, u16 dx, u16 dy, in mb86290fb_imageblit16() argument
171 (GDC_CMD_BLT_DRAW << 16) | (2 + step * height); in mb86290fb_imageblit16()
176 memcpy(&cmd[3 + i * step], line, step); in mb86290fb_imageblit16()
190 u16 step; in mb86290fb_imageblit() local
207 step = (width + 31) >> 5; in mb86290fb_imageblit()
208 cmdlen = 9 + height * step; in mb86290fb_imageblit()
224 step = (width + 1) >> 1; in mb86290fb_imageblit()
225 cmdlen = 3 + height * step; in mb86290fb_imageblit()
230 step = (width + 1) >> 1; 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()