Searched refs:line_length (Results 1 - 12 of 12) sorted by relevance

/u-boot/drivers/video/
H A Dconsole_rotate.c26 start = vid_priv->fb + vid_priv->line_length -
33 line += vid_priv->line_length;
53 dst = vid_priv->fb + vid_priv->line_length -
55 src = vid_priv->fb + vid_priv->line_length -
63 src += vid_priv->line_length;
64 dst += vid_priv->line_length;
88 start = vid_priv->fb + linenum * vid_priv->line_length - x * pbytes;
96 ret = vidconsole_sync_copy(dev, start - vid_priv->line_length, line);
114 start = vid_priv->fb + vid_priv->ysize * vid_priv->line_length -
115 (row + 1) * fontdata->height * vid_priv->line_length;
[all...]
H A Dconsole_normal.c31 line = vid_priv->fb + row * fontdata->height * vid_priv->line_length;
56 dst = vid_priv->fb + rowdst * fontdata->height * vid_priv->line_length;
57 src = vid_priv->fb + rowsrc * fontdata->height * vid_priv->line_length;
58 size = fontdata->height * vid_priv->line_length * count;
84 start = vid_priv->fb + linenum * vid_priv->line_length + x * pbytes;
117 start = vid_priv->fb + y * vid_priv->line_length + x * pbytes;
H A Dconsole_core.c91 line_step = -vid_priv->line_length;
94 line_step = vid_priv->line_length;
145 line_step = vid_priv->line_length;
148 line_step = -vid_priv->line_length;
193 line_step = -vid_priv->line_length;
196 line_step = vid_priv->line_length;
H A Dvideo_bmp.c154 priv->line_length;
165 (y + y_off - 1) * priv->line_length +
328 (y + height) * priv->line_length + x * bpix / 8);
331 fb = start - priv->line_length;
360 fb -= byte_width + priv->line_length;
372 fb -= width * 2 + priv->line_length;
416 fb -= priv->line_length + width * (bpix / 8);
454 fb -= priv->line_length + width * (bpix / 8);
463 fb = (uchar *)(priv->fb + y * priv->line_length + x * bpix / 8);
H A Dvideo-uclass.c157 start = priv->fb + ystart * priv->line_length;
192 line += priv->line_length;
543 if (!priv->line_length)
544 priv->line_length = priv->xsize * VNBYTES(priv->bpix);
546 priv->fb_size = priv->line_length * priv->ysize;
564 ho->line_length = priv->line_length;
H A Dconsole_truetype.c198 line = vid_priv->fb + row * met->font_size * vid_priv->line_length;
199 end = line + met->font_size * vid_priv->line_length;
249 dst = vid_priv->fb + rowdst * met->font_size * vid_priv->line_length;
250 src = vid_priv->fb + rowsrc * met->font_size * vid_priv->line_length;
252 vid_priv->line_length * count);
330 start = vid_priv->fb + y * vid_priv->line_length +
334 start += linenum * vid_priv->line_length;
419 line += vid_priv->line_length;
880 start = vid_priv->fb + y * vid_priv->line_length +
942 line += vid_priv->line_length;
[all...]
/u-boot/include/
H A Dvideo.h91 * @line_length: Length of each frame buffer line, in bytes. This can be
118 int line_length; member in struct:video_priv
150 * @line_length: Length of each frame buffer line, in bytes. This can be
160 u32 line_length; member in struct:video_handoff
/u-boot/drivers/pci/
H A Dpci_rom.c345 uc_priv->line_length = vesa->bytes_per_scanline;
393 uc_priv->line_length = ho->line_length;
439 ho->line_length = uc_priv->line_length;
/u-boot/drivers/video/imx/
H A Dmxc_ipuv3_fb.c171 fbi->fix.line_length,
174 (fbi->fix.line_length * fbi->var.yres));
179 fbi->fix.line_length,
181 (fbi->fix.line_length * fbi->var.yres),
206 mem_len = fbi->var.yres_virtual * fbi->fix.line_length;
386 if (fbi->fix.smem_len < fbi->var.yres_virtual * fbi->fix.line_length) {
388 fbi->fix.line_length;
523 fbi->fix.line_length = fbi->var.xres_virtual *
525 fbi->fix.smem_len = fbi->var.yres_virtual * fbi->fix.line_length;
/u-boot/drivers/video/stm32/
H A Dstm32_ltdc.c431 u32 line_length; local
460 line_length = ((bpp >> 3) * priv->crop_w) + (bus_width >> 3) - 1;
461 val = (pitch_in_bytes << 16) | line_length;
/u-boot/include/linux/
H A Dfb.h33 __u32 line_length; /* length of a line in bytes */ member in struct:fb_fix_screeninfo
/u-boot/drivers/video/zynqmp/
H A Dzynqmp_dpsub.c2141 uc_priv->line_length = uc_priv->xsize * VNBYTES(uc_priv->bpix);
2143 uc_priv->fb_size = uc_priv->line_length * uc_priv->ysize;
2156 uc_priv->ysize, uc_priv->bpix, VNBYTES(uc_priv->bpix), uc_priv->line_length);
2168 priv->frame_buffer.stride = uc_priv->line_length;

Completed in 92 milliseconds