/linux-2.4.37.9/drivers/video/ |
D | fbcon-mfb.c | 29 p->next_line = p->line_length; in fbcon_mfb_setup() 31 p->next_line = p->var.xres_virtual>>3; in fbcon_mfb_setup() 41 if (sx == 0 && dx == 0 && width == p->next_line) { in fbcon_mfb_bmove() 46 src = p->screen_base+sy*fontheight(p)*p->next_line+sx; in fbcon_mfb_bmove() 47 dest = p->screen_base+dy*fontheight(p)*p->next_line+dx; in fbcon_mfb_bmove() 50 src += p->next_line; in fbcon_mfb_bmove() 51 dest += p->next_line; in fbcon_mfb_bmove() 54 src = p->screen_base+((sy+height)*fontheight(p)-1)*p->next_line+sx; in fbcon_mfb_bmove() 55 dest = p->screen_base+((dy+height)*fontheight(p)-1)*p->next_line+dx; in fbcon_mfb_bmove() 58 src -= p->next_line; in fbcon_mfb_bmove() [all …]
|
D | fbcon-vga.c | 95 p->next_line = p->line_length; in fbcon_vga_setup() 105 if (sx == 0 && dx == 0 && width == p->next_line/2) { in fbcon_vga_bmove() 106 src = (u16 *)(p->screen_base+sy*p->next_line); in fbcon_vga_bmove() 107 dst = (u16 *)(p->screen_base+dy*p->next_line); in fbcon_vga_bmove() 110 src = (u16 *)(p->screen_base+sy*p->next_line+sx*2); in fbcon_vga_bmove() 111 dst = (u16 *)(p->screen_base+dy*p->next_line+dx*2); in fbcon_vga_bmove() 114 src += p->next_line/2; in fbcon_vga_bmove() 115 dst += p->next_line/2; in fbcon_vga_bmove() 118 src = (u16 *)(p->screen_base+(sy+height-1)*p->next_line+sx*2); in fbcon_vga_bmove() 119 dst = (u16 *)(p->screen_base+(dy+height-1)*p->next_line+dx*2); in fbcon_vga_bmove() [all …]
|
D | fbcon-sti.c | 124 p->next_line = p->line_length; in fbcon_sti_setup() 126 p->next_line = p->var.xres_virtual>>3; in fbcon_sti_setup() 141 if (sx == 0 && dx == 0 && width == p->next_line) { in fbcon_sti_bmove() 146 src = p->screen_base+sy*fontheight(p)*p->next_line+sx; in fbcon_sti_bmove() 147 dest = p->screen_base+dy*fontheight(p)*p->next_line+dx; in fbcon_sti_bmove() 150 src += p->next_line; in fbcon_sti_bmove() 151 dest += p->next_line; in fbcon_sti_bmove() 154 src = p->screen_base+((sy+height)*fontheight(p)-1)*p->next_line+sx; in fbcon_sti_bmove() 155 dest = p->screen_base+((dy+height)*fontheight(p)-1)*p->next_line+dx; in fbcon_sti_bmove() 158 src -= p->next_line; in fbcon_sti_bmove() [all …]
|
D | fbcon-afb.c | 164 p->next_line = p->line_length; in fbcon_afb_setup() 166 p->next_line = p->var.xres_virtual>>3; in fbcon_afb_setup() 167 p->next_plane = p->var.yres_virtual*p->next_line; in fbcon_afb_setup() 176 if (sx == 0 && dx == 0 && width == p->next_line) { in fbcon_afb_bmove() 186 src0 = p->screen_base+sy*fontheight(p)*p->next_line+sx; in fbcon_afb_bmove() 187 dest0 = p->screen_base+dy*fontheight(p)*p->next_line+dx; in fbcon_afb_bmove() 195 src += p->next_line; in fbcon_afb_bmove() 196 dest += p->next_line; in fbcon_afb_bmove() 202 src0 = p->screen_base+(sy+height)*fontheight(p)*p->next_line+sx; in fbcon_afb_bmove() 203 dest0 = p->screen_base+(dy+height)*fontheight(p)*p->next_line+dx; in fbcon_afb_bmove() [all …]
|
D | fbcon-mac.c | 37 p->next_line = p->line_length; in fbcon_mac_setup() 39 p->next_line = p->var.xres_virtual>>3; in fbcon_mac_setup() 60 src = (u8 *) (p->screen_base + sy * fontheight(p) * p->next_line); in fbcon_mac_bmove() 61 dest = (u8 *) (p->screen_base + dy * fontheight(p) * p->next_line); in fbcon_mac_bmove() 64 s = height * fontheight(p) * p->next_line; in fbcon_mac_bmove() 163 dest += p->next_line; in fbcon_mac_bmove() 164 src += p->next_line; in fbcon_mac_bmove() 166 dest -= p->next_line; in fbcon_mac_bmove() 167 src -= p->next_line; in fbcon_mac_bmove() 200 dest = (u8 *) (p->screen_base + sy * fontheight(p) * p->next_line); in fbcon_mac_clear() [all …]
|
D | dn_cfb8.c | 364 src=(ushort *)(p->screen_base+ y_src*p->next_line+(x_src >> 4)); in dn_bitblt() 365 dest=y_dest*(p->next_line >> 1)+(x_dest >> 4); in dn_bitblt() 368 y_delta=(p->next_line*8)-x_src-x_count; in dn_bitblt() 378 y_delta=-((p->next_line*8)-x_src-x_count); in dn_bitblt() 436 if (sx == 0 && dx == 0 && width == p->next_line) { in bmove_apollofb() 441 src = p->screen_base+sy*p->fontheight*p->next_line+sx; in bmove_apollofb() 442 dest = p->screen_base+dy*p->fontheight*p->next_line+dx; in bmove_apollofb() 445 src += p->next_line; in bmove_apollofb() 446 dest += p->next_line; in bmove_apollofb() 449 src = p->screen_base+((sy+height)*p->fontheight-1)*p->next_line+sx; in bmove_apollofb() [all …]
|
D | fbcon-ilbm.c | 36 p->next_line = p->line_length*p->var.bits_per_pixel; in fbcon_ilbm_setup() 39 p->next_line = p->type_aux; in fbcon_ilbm_setup() 48 fb_memmove(p->screen_base+dy*fontheight(p)*p->next_line, in fbcon_ilbm_bmove() 49 p->screen_base+sy*fontheight(p)*p->next_line, in fbcon_ilbm_bmove() 50 height*fontheight(p)*p->next_line); in fbcon_ilbm_bmove() 56 src = p->screen_base+sy*fontheight(p)*p->next_line+sx; in fbcon_ilbm_bmove() 57 dest = p->screen_base+dy*fontheight(p)*p->next_line+dx; in fbcon_ilbm_bmove() 64 src = p->screen_base+(sy+height)*fontheight(p)*p->next_line+sx; in fbcon_ilbm_bmove() 65 dest = p->screen_base+(dy+height)*fontheight(p)*p->next_line+dx; in fbcon_ilbm_bmove() 82 dest = p->screen_base+sy*fontheight(p)*p->next_line+sx; in fbcon_ilbm_clear() [all …]
|
D | dnfb.c | 371 src=(ushort *)(p->screen_base+ y_src*p->next_line+(x_src >> 4)); in dn_bitblt() 372 dest=y_dest*(p->next_line >> 1)+(x_dest >> 4); in dn_bitblt() 375 y_delta=(p->next_line*8)-x_src-x_count; in dn_bitblt() 386 y_delta=-((p->next_line*8)-x_src-x_count); in dn_bitblt() 452 if (sx == 0 && dx == 0 && width == p->next_line) { in bmove_apollofb() 457 src = p->screen_base+sy*fontheight*next_line+sx; in bmove_apollofb() 458 dest = p->screen_base+dy*fontheight*next_line+dx; in bmove_apollofb() 461 src += p->next_line; in bmove_apollofb() 462 dest += p->next_line; in bmove_apollofb() 465 src = p->screen_base+((sy+height)*fontheight-1)*p->next_line+sx; in bmove_apollofb() [all …]
|
D | fbcon-iplan2p2.c | 152 p->next_line = p->var.xres_virtual>>2; in fbcon_iplan2p2_setup() 171 if (sx == 0 && dx == 0 && width * 2 == p->next_line) { in fbcon_iplan2p2_bmove() 175 fb_memmove(p->screen_base + dy * p->next_line * fontheight(p), in fbcon_iplan2p2_bmove() 176 p->screen_base + sy * p->next_line * fontheight(p), in fbcon_iplan2p2_bmove() 177 p->next_line * height * fontheight(p)); in fbcon_iplan2p2_bmove() 182 int bytes = p->next_line; in fbcon_iplan2p2_bmove() 270 int bytes = p->next_line; in fbcon_iplan2p2_clear() 327 int bytes = p->next_line; in fbcon_iplan2p2_putc() 360 bytes = p->next_line; in fbcon_iplan2p2_putcs() 394 dest = (p->screen_base + ((yy * p->next_line) << fontheightlog(p)) + in fbcon_iplan2p2_revc() [all …]
|
D | fbcon-iplan2p4.c | 160 p->next_line = p->var.xres_virtual>>1; in fbcon_iplan2p4_setup() 179 if (sx == 0 && dx == 0 && width * 4 == p->next_line) { in fbcon_iplan2p4_bmove() 183 fb_memmove(p->screen_base + dy * p->next_line * fontheight(p), in fbcon_iplan2p4_bmove() 184 p->screen_base + sy * p->next_line * fontheight(p), in fbcon_iplan2p4_bmove() 185 p->next_line * height * fontheight(p)); in fbcon_iplan2p4_bmove() 190 int bytes = p->next_line; in fbcon_iplan2p4_bmove() 281 int bytes = p->next_line; in fbcon_iplan2p4_clear() 337 int bytes = p->next_line; in fbcon_iplan2p4_putc() 370 bytes = p->next_line; in fbcon_iplan2p4_putcs() 411 dest = (p->screen_base + ((yy * p->next_line) << fontheightlog(p)) + in fbcon_iplan2p4_revc() [all …]
|
D | dn_cfb4.c | 375 src=(ushort *)(p->screen_base+ y_src*p->next_line+(x_src >> 4)); in dn_bitblt() 376 dest=y_dest*(p->next_line >> 1)+(x_dest >> 4); in dn_bitblt() 379 y_delta=(p->next_line*8)-x_src-x_count; in dn_bitblt() 389 y_delta=-((p->next_line*8)-x_src-x_count); in dn_bitblt() 452 if (sx == 0 && dx == 0 && width == p->next_line) { in bmove_apollofb() 457 src = p->screen_base+sy*fontheight*p->next_line+sx; in bmove_apollofb() 458 dest = p->screen_base+dy*fontheight*p->next_line+dx; in bmove_apollofb() 461 src += p->next_line; in bmove_apollofb() 462 dest += p->next_line; in bmove_apollofb() 465 src = p->screen_base+((sy+height)*fontheight-1)*p->next_line+sx; in bmove_apollofb() [all …]
|
D | fbcon-iplan2p8.c | 192 p->next_line = p->var.xres_virtual; in fbcon_iplan2p8_setup() 211 if (sx == 0 && dx == 0 && width * 8 == p->next_line) { in fbcon_iplan2p8_bmove() 215 fast_memmove(p->screen_base + dy * p->next_line * fontheight(p), in fbcon_iplan2p8_bmove() 216 p->screen_base + sy * p->next_line * fontheight(p), in fbcon_iplan2p8_bmove() 217 p->next_line * height * fontheight(p)); in fbcon_iplan2p8_bmove() 222 int bytes = p->next_line; in fbcon_iplan2p8_bmove() 313 int bytes = p->next_line; in fbcon_iplan2p8_clear() 369 int bytes = p->next_line; in fbcon_iplan2p8_putc() 402 bytes = p->next_line; in fbcon_iplan2p8_putcs() 445 dest = (p->screen_base + ((yy * p->next_line) << fontheightlog(p)) + in fbcon_iplan2p8_revc() [all …]
|
D | fbcon-cfb2.c | 53 p->next_line = p->line_length ? p->line_length : p->var.xres_virtual>>2; in fbcon_cfb2_setup() 60 int bytes = p->next_line, linesize = bytes * fontheight(p), rows; in fbcon_cfb2_bmove() 96 int bytes=p->next_line,lines=height * fontheight(p), rows, i; in fbcon_cfb2_clear() 128 int bytes=p->next_line,rows; in fbcon_cfb2_putc() 153 int rows,bytes=p->next_line; in fbcon_cfb2_putcs() 180 int bytes=p->next_line, rows; in fbcon_cfb2_revc()
|
D | fbcon-cfb4.c | 53 p->next_line = p->line_length ? p->line_length : p->var.xres_virtual>>1; in fbcon_cfb4_setup() 60 int bytes = p->next_line, linesize = bytes * fontheight(p), rows; in fbcon_cfb4_bmove() 96 int bytes=p->next_line,lines=height * fontheight(p), rows, i; in fbcon_cfb4_clear() 130 int bytes=p->next_line,rows; in fbcon_cfb4_putc() 155 int rows,bytes=p->next_line; in fbcon_cfb4_putcs() 184 int bytes=p->next_line, rows; in fbcon_cfb4_revc()
|
D | fbcon-cfb8.c | 44 p->next_line = p->line_length ? p->line_length : p->var.xres_virtual; in fbcon_cfb8_setup() 51 int bytes = p->next_line, linesize = bytes * fontheight(p), rows; in fbcon_cfb8_bmove() 97 int bytes=p->next_line,lines=height * fontheight(p); in fbcon_cfb8_clear() 115 int bytes=p->next_line,rows; in fbcon_cfb8_putc() 162 int rows,bytes=p->next_line; in fbcon_cfb8_putcs() 220 int bytes=p->next_line, rows; in fbcon_cfb8_revc() 237 int bytes=p->next_line; in fbcon_cfb8_clear_margins()
|
D | fbcon-hga.c | 48 p->next_line = p->line_length; in fbcon_hga_setup() 59 if (sx == 0 && dx == 0 && width == p->next_line) { in fbcon_hga_bmove() 99 if (sx == 0 && width == p->next_line) { in fbcon_hga_clear() 204 fb_memset255(dest, p->next_line); in fbcon_hga_clear_margins() 206 fb_memclear(dest, p->next_line); in fbcon_hga_clear_margins()
|
D | fbcon-cfb16.c | 39 p->next_line = p->line_length ? p->line_length : p->var.xres_virtual<<1; in fbcon_cfb16_setup() 46 int bytes = p->next_line, linesize = bytes * fontheight(p), rows; in fbcon_cfb16_bmove() 108 int bytes = p->next_line, lines = height * fontheight(p); in fbcon_cfb16_clear() 126 int bytes = p->next_line, rows; in fbcon_cfb16_putc() 177 int rows, bytes = p->next_line; in fbcon_cfb16_putcs() 234 int bytes = p->next_line, rows; in fbcon_cfb16_revc() 261 int bytes = p->next_line; in fbcon_cfb16_clear_margins()
|
D | fbcon-cfb32.c | 28 p->next_line = p->line_length ? p->line_length : p->var.xres_virtual<<2; in fbcon_cfb32_setup() 35 int bytes = p->next_line, linesize = bytes * fontheight(p), rows; in fbcon_cfb32_bmove() 99 int bytes = p->next_line, lines = height * fontheight(p); in fbcon_cfb32_clear() 117 int bytes = p->next_line, rows; in fbcon_cfb32_putc() 163 int rows, bytes = p->next_line; in fbcon_cfb32_putcs() 211 int bytes = p->next_line, rows; in fbcon_cfb32_revc() 247 int bytes = p->next_line; in fbcon_cfb32_clear_margins()
|
D | fbcon-cfb24.c | 28 p->next_line = p->line_length ? p->line_length : p->var.xres_virtual*3; in fbcon_cfb24_setup() 35 int bytes = p->next_line, linesize = bytes * fontheight(p), rows; in fbcon_cfb24_bmove() 122 int bytes = p->next_line, lines = height * fontheight(p); in fbcon_cfb24_clear() 140 int bytes = p->next_line, rows; in fbcon_cfb24_putc() 190 int rows, bytes = p->next_line; in fbcon_cfb24_putcs() 242 int bytes = p->next_line, rows; in fbcon_cfb24_revc() 273 int bytes = p->next_line; in fbcon_cfb24_clear_margins()
|
D | amifb.c | 694 u_long next_line; /* modulo for next line */ member 1950 fix->type_aux = par->next_line; in ami_encode_fix() 2289 par->next_line = par->bpp*par->next_plane; in ami_decode_var() 2290 if (par->next_line * par->vyres > videomemorysize) { in ami_decode_var() 2295 par->next_line = div8(upx(16<<maxfmode, par->vxres)); in ami_decode_var() 2296 par->next_plane = par->vyres*par->next_line; in ami_decode_var() 2548 mod = par->next_line - div8(fsize>>clk_shift); in ami_update_par() 2554 par->bpl2mod += par->next_line; in ami_update_par() 2561 par->bplpt0 = videomemory_phys + par->next_line*par->yoffset + move; in ami_update_par() 2566 par->bplpt0wrap += par->next_line; in ami_update_par() [all …]
|
D | pvr2fb.c | 148 u_long next_line; /* Modulo for next line */ member 638 fix->line_length = par->next_line; in pvr2_encode_fix() 773 par->next_line = line_length; in pvr2_decode_var() 865 par->disp_start += (par->next_line * par->yoffset) + move; in pvr2_update_par() 902 diw_modulo += par->next_line / 4; in pvr2_init_display()
|
D | cyber2000fb.c | 940 display->next_line = var->xres_virtual; in cyber2000fb_set_var() 956 display->next_line = var->xres_virtual * 2; in cyber2000fb_set_var() 971 display->next_line = var->xres_virtual * 2; in cyber2000fb_set_var() 986 display->next_line = var->xres_virtual * 3; in cyber2000fb_set_var() 1003 display->next_line = var->xres_virtual * 4; in cyber2000fb_set_var() 1018 cfb->fb.fix.line_length = display->next_line; in cyber2000fb_set_var()
|
D | virgefb.c | 1917 (u_short)(height*fontheight(p)), (u_short)p->next_line, 8); in fbcon_virge8_bmove() 1929 (u_short)bg, (u_short)p->next_line, 8); in fbcon_virge8_clear() 1982 (u_short)(height*fontheight(p)), (u_short)p->next_line, 16); in fbcon_virge16_bmove() 1994 (u_short)bg, (u_short)p->next_line, 16); in fbcon_virge16_clear() 2047 (u_short)(height*fontheight(p)), (u_short)p->next_line, 16); in fbcon_virge32_bmove() 2059 (u_short)bg, (u_short)p->next_line, 16); in fbcon_virge32_clear()
|
/linux-2.4.37.9/drivers/video/matrox/ |
D | matroxfb_accel.c | 821 …p->next_line = p->line_length ? p->line_length : ((p->var.xres_virtual / (fontwidth(p)?fontwidth(p… in matrox_text_setup() 836 srcoff = (sy * p->next_line) + (sx * step); in matrox_text_bmove() 837 dstoff = (dy * p->next_line) + (dx * step); in matrox_text_bmove() 844 dstoff += p->next_line - width * step; in matrox_text_bmove() 845 srcoff += p->next_line - width * step; in matrox_text_bmove() 850 off = (height - 1) * p->next_line + (width - 1) * step; in matrox_text_bmove() 857 dstoff -= p->next_line - width * step; in matrox_text_bmove() 858 srcoff -= p->next_line - width * step; in matrox_text_bmove() 874 offs = sy * p->next_line + sx * step; in matrox_text_clear() 883 offs += p->next_line - width * step; in matrox_text_clear() [all …]
|
/linux-2.4.37.9/drivers/video/riva/ |
D | accel.c | 169 p->next_line = p->line_length ? p->line_length : p->var.xres_virtual; in fbcon_riva8_setup() 282 p->next_line = p->line_length ? p->line_length : p->var.xres_virtual<<1; in fbcon_riva16_setup() 376 p->next_line = p->line_length ? p->line_length : p->var.xres_virtual<<2; in fbcon_riva32_setup()
|