Lines Matching refs:step
369 u_int32_t step = minfo->fbcon.var.xres_virtual >> 1; in matroxfb_cfb4_clear() local
372 unsigned int uaddr = sy * step + sx - 1; in matroxfb_cfb4_clear()
377 uaddr += step; in matroxfb_cfb4_clear()
381 unsigned int uaddr = sy * step + sx + width; in matroxfb_cfb4_clear()
386 uaddr += step; in matroxfb_cfb4_clear()
408 u_int32_t step; in matroxfb_1bpp_imageblit() local
420 step = (width + 7) >> 3; in matroxfb_1bpp_imageblit()
421 charcell = height * step; in matroxfb_1bpp_imageblit()
424 if (width == step << 3) { in matroxfb_1bpp_imageblit()
456 if ((step & 3) == 0) { in matroxfb_1bpp_imageblit()
460 } else if (step == 1) { in matroxfb_1bpp_imageblit()
470 } else if (step == 2) { in matroxfb_1bpp_imageblit()
485 for (i = 0; i < step; i += 4) { in matroxfb_1bpp_imageblit()
489 chardata += step; in matroxfb_1bpp_imageblit()