• Home
  • Raw
  • Download

Lines Matching refs:step

75 static void mb86290fb_imageblit1(u32 *cmd, u16 step, u16 dx, u16 dy,  in mb86290fb_imageblit1()  argument
101 (GDC_CMD_BITMAP << 16) | (2 + (step * height)); in mb86290fb_imageblit1()
106 memcpy(&cmd[9 + i * step], line, step << 2); in mb86290fb_imageblit1()
110 for (k = 0; k < step; k++) in mb86290fb_imageblit1()
111 cmd[9 + i * step + k] = in mb86290fb_imageblit1()
112 cpu_to_be32(cmd[9 + i * step + k]); in mb86290fb_imageblit1()
124 static void mb86290fb_imageblit8(u32 *cmd, u16 step, u16 dx, u16 dy, in mb86290fb_imageblit8() argument
134 (GDC_CMD_BLT_DRAW << 16) | (2 + (height * step)); in mb86290fb_imageblit8()
144 for (j = 0; j < step; j++) { in mb86290fb_imageblit8()
145 cmd[3 + i * step + j] = in mb86290fb_imageblit8()
148 cmd[3 + i * step + j] |= in mb86290fb_imageblit8()
163 static void mb86290fb_imageblit16(u32 *cmd, u16 step, u16 dx, u16 dy, in mb86290fb_imageblit16() argument
177 (GDC_CMD_BLT_DRAW << 16) | (2 + step * height); in mb86290fb_imageblit16()
182 memcpy(&cmd[3 + i * step], line, step); in mb86290fb_imageblit16()
197 u16 step; in mb86290fb_imageblit() local
215 step = (width + 31) >> 5; in mb86290fb_imageblit()
216 cmdlen = 9 + height * step; in mb86290fb_imageblit()
232 step = (width + 1) >> 1; in mb86290fb_imageblit()
233 cmdlen = 3 + height * step; in mb86290fb_imageblit()
238 step = (width + 1) >> 1; in mb86290fb_imageblit()
239 cmdlen = 3 + height * step; in mb86290fb_imageblit()
251 cmdfn(cmd, step, dx, dy, width, height, fgcolor, bgcolor, image, info); in mb86290fb_imageblit()