Lines Matching refs:xres
52 #define floorXres(a,xres) (a&(~(xres - 1))) argument
55 #define ceilXres(a,xres) (a|(xres - 1)) argument
93 .xres = 128,
262 linesize = par->info->var.xres/8; in arcfb_lcd_update_page()
452 unsigned int xres; in arcfb_write() local
456 xres = info->var.xres; in arcfb_write()
457 fbmemlength = (xres * info->var.yres)/8; in arcfb_write()
479 startpos = floorXres(bitppos, xres); in arcfb_write()
480 endpos = ceilXres((bitppos + (count*8)), xres); in arcfb_write()
483 x = startpos % xres; in arcfb_write()
484 y = startpos / xres; in arcfb_write()
485 w = xres; in arcfb_write()
486 h = bitcount / xres; in arcfb_write()