• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/

Lines Matching refs:line_length

338 	__u32 line_length;	/* in BYTES! */
564 u_short line_length);
568 u_char color, u_short line_length);
844 regs->line_length = var->xres_virtual / 8;
850 regs->line_length = var->xres_virtual;
856 regs->line_length = var->xres_virtual * 2;
862 regs->line_length = var->xres_virtual * 3;
868 regs->line_length = var->xres_virtual * 4;
1534 info->fix.line_length = regs.line_length;
1631 base = yoffset * cinfo->currentmode.line_length + xoffset;
2003 cinfo->currentmode.line_length);
2010 cinfo->currentmode.line_length);
2052 cinfo->currentmode.line_length);
2059 cinfo->currentmode.line_length);
2257 info->fix.line_length = cinfo->currentmode.line_length;
2826 u_short width, u_short height, u_short line_length)
2849 nsrc = (cury * line_length) + curx;
2850 ndest = (desty * line_length) + destx;
2853 nsrc = cury * line_length + curx + nheight * line_length + nwidth;
2854 ndest = desty * line_length + destx + nheight * line_length + nwidth;
2872 /* pitch: set to line_length */
2873 vga_wgfx (regbase, CL_GR24, line_length & 0xff); /* dest pitch low */
2874 vga_wgfx (regbase, CL_GR25, (line_length >> 8)); /* dest pitch hi */
2875 vga_wgfx (regbase, CL_GR26, line_length & 0xff); /* source pitch low */
2876 vga_wgfx (regbase, CL_GR27, (line_length >> 8)); /* source pitch hi */
2917 u_char color, u_short line_length)
2928 ndest = (y * line_length) + x;
2932 /* pitch: set to line_length */
2933 vga_wgfx (regbase, CL_GR24, line_length & 0xff); /* dest pitch low */
2934 vga_wgfx (regbase, CL_GR25, (line_length >> 8)); /* dest pitch hi */
2935 vga_wgfx (regbase, CL_GR26, line_length & 0xff); /* source pitch low */
2936 vga_wgfx (regbase, CL_GR27, (line_length >> 8)); /* source pitch hi */