Lines Matching refs:width

216 	const u32 width = (info->var.xres_virtual + 7) & ~7;  in pm3fb_init_engine()  local
272 PM3FBDestReadBufferWidth_Width(width)); in pm3fb_init_engine()
280 PM3FBSourceReadBufferWidth_Width(width)); in pm3fb_init_engine()
326 PM3FBWriteBufferWidth_Width(width)); in pm3fb_init_engine()
402 if (!modded.width || !modded.height || in pm3fb_fillrect()
406 if (modded.dx + modded.width > vxres) in pm3fb_fillrect()
407 modded.width = vxres - modded.dx; in pm3fb_fillrect()
435 PM3Render2D_Width(modded.width) | in pm3fb_fillrect()
459 if (!modded.width || !modded.height || in pm3fb_copyarea()
464 if (modded.sx + modded.width > vxres) in pm3fb_copyarea()
465 modded.width = vxres - modded.sx; in pm3fb_copyarea()
466 if (modded.dx + modded.width > vxres) in pm3fb_copyarea()
467 modded.width = vxres - modded.dx; in pm3fb_copyarea()
491 ((modded.dx + modded.width) & 0x0fff)); in pm3fb_copyarea()
507 PM3Render2D_Width(modded.width + x_align) | in pm3fb_copyarea()
566 ((image->dx + image->width) & 0x0fff)); in pm3fb_imageblit()
575 PM3Render2D_Width(image->width) | in pm3fb_imageblit()
580 int width = ((image->width + 7) >> 3) in pm3fb_imageblit() local
582 width >>= 2; in pm3fb_imageblit()
584 while (width >= PM3_FIFO_SIZE) { in pm3fb_imageblit()
592 width -= PM3_FIFO_SIZE - 1; in pm3fb_imageblit()
595 PM3_WAIT(par, width + 1); in pm3fb_imageblit()
596 while (width--) { in pm3fb_imageblit()
621 if (cursor->image.width > 64 || in pm3fb_cursor()
685 int j = (cursor->image.width + 7) >> 3; in pm3fb_cursor()
730 const u32 width = (info->var.xres_virtual + 7) & ~7; in pm3fb_write_mode() local
750 pm3fb_shift_bpp(bpp, width)); in pm3fb_write_mode()
957 var->width = -1; in pm3fb_check_var()
1105 #define CNVT_TOHW(val, width) ((((val) << (width)) + 0x7FFF - (val)) >> 16) in pm3fb_setcolreg() argument