Lines Matching refs:xres
53 #define floorXres(a,xres) (a&(~(xres - 1))) argument
56 #define ceilXres(a,xres) (a|(xres - 1)) argument
94 .xres = 128,
263 linesize = par->info->var.xres/8; in arcfb_lcd_update_page()
453 unsigned int xres; in arcfb_write() local
460 xres = info->var.xres; in arcfb_write()
461 fbmemlength = (xres * info->var.yres)/8; in arcfb_write()
483 startpos = floorXres(bitppos, xres); in arcfb_write()
484 endpos = ceilXres((bitppos + (count*8)), xres); in arcfb_write()
487 x = startpos % xres; in arcfb_write()
488 y = startpos / xres; in arcfb_write()
489 w = xres; in arcfb_write()
490 h = bitcount / xres; in arcfb_write()