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

/u-boot/drivers/video/
H A Dconsole_rotate.c27 start = vid_priv->fb + vid_priv->line_length -
34 line += vid_priv->line_length;
54 dst = vid_priv->fb + vid_priv->line_length -
56 src = vid_priv->fb + vid_priv->line_length -
64 src += vid_priv->line_length;
65 dst += vid_priv->line_length;
89 start = vid_priv->fb + linenum * vid_priv->line_length - x * pbytes;
97 ret = vidconsole_sync_copy(dev, start - vid_priv->line_length, line);
115 start = vid_priv->fb + vid_priv->ysize * vid_priv->line_length -
116 (row + 1) * fontdata->height * vid_priv->line_length;
[all...]
H A Dconsole_normal.c32 line = vid_priv->fb + row * fontdata->height * vid_priv->line_length;
57 dst = vid_priv->fb + rowdst * fontdata->height * vid_priv->line_length;
58 src = vid_priv->fb + rowsrc * fontdata->height * vid_priv->line_length;
59 size = fontdata->height * vid_priv->line_length * count;
85 start = vid_priv->fb + linenum * vid_priv->line_length + x * pbytes;
118 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.c155 priv->line_length;
166 (y + y_off - 1) * priv->line_length +
329 (y + height) * priv->line_length + x * bpix / 8);
332 fb = start - priv->line_length;
361 fb -= byte_width + priv->line_length;
373 fb -= width * 2 + priv->line_length;
417 fb -= priv->line_length + width * (bpix / 8);
455 fb -= priv->line_length + width * (bpix / 8);
464 fb = (uchar *)(priv->fb + y * priv->line_length + x * bpix / 8);
H A Dvideo-uclass.c158 start = priv->fb + ystart * priv->line_length;
193 line += priv->line_length;
544 if (!priv->line_length)
545 priv->line_length = priv->xsize * VNBYTES(priv->bpix);
547 priv->fb_size = priv->line_length * priv->ysize;
565 ho->line_length = priv->line_length;
H A Dconsole_truetype.c199 line = vid_priv->fb + row * met->font_size * vid_priv->line_length;
200 end = line + met->font_size * vid_priv->line_length;
250 dst = vid_priv->fb + rowdst * met->font_size * vid_priv->line_length;
251 src = vid_priv->fb + rowsrc * met->font_size * vid_priv->line_length;
253 vid_priv->line_length * count);
331 start = vid_priv->fb + y * vid_priv->line_length +
335 start += linenum * vid_priv->line_length;
420 line += vid_priv->line_length;
881 start = vid_priv->fb + y * vid_priv->line_length +
943 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.c172 fbi->fix.line_length,
175 (fbi->fix.line_length * fbi->var.yres));
180 fbi->fix.line_length,
182 (fbi->fix.line_length * fbi->var.yres),
207 mem_len = fbi->var.yres_virtual * fbi->fix.line_length;
387 if (fbi->fix.smem_len < fbi->var.yres_virtual * fbi->fix.line_length) {
389 fbi->fix.line_length;
524 fbi->fix.line_length = fbi->var.xres_virtual *
526 fbi->fix.smem_len = fbi->var.yres_virtual * fbi->fix.line_length;
/u-boot/drivers/video/stm32/
H A Dstm32_ltdc.c432 u32 line_length; local
461 line_length = ((bpp >> 3) * priv->crop_w) + (bus_width >> 3) - 1;
462 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.c2142 uc_priv->line_length = uc_priv->xsize * VNBYTES(uc_priv->bpix);
2144 uc_priv->fb_size = uc_priv->line_length * uc_priv->ysize;
2157 uc_priv->ysize, uc_priv->bpix, VNBYTES(uc_priv->bpix), uc_priv->line_length);
2169 priv->frame_buffer.stride = uc_priv->line_length;

Completed in 123 milliseconds