Lines Matching refs:pbytes
21 int pbytes = VNBYTES(vid_priv->bpix); in console_set_row_1() local
26 (row + 1) * fontdata->height * pbytes; in console_set_row_1()
31 fill_pixel_and_goto_next(&dst, clr, pbytes, pbytes); in console_set_row_1()
50 int pbytes = VNBYTES(vid_priv->bpix); in console_move_rows_1() local
56 (rowdst + count) * fontdata->height * pbytes; in console_move_rows_1()
58 (rowsrc + count) * fontdata->height * pbytes; in console_move_rows_1()
61 memmove(dst, src, fontdata->height * pbytes * count); in console_move_rows_1()
82 int pbytes = VNBYTES(vid_priv->bpix); in console_putc_xy_1() local
93 start = vid_priv->fb + linenum * vid_priv->line_length - x * pbytes; in console_putc_xy_1()
118 int pbytes = VNBYTES(vid_priv->bpix); in console_set_row_2() local
125 fill_pixel_and_goto_next(&dst, clr, pbytes, pbytes); in console_set_row_2()
170 int pbytes = VNBYTES(vid_priv->bpix); in console_putc_xy_2() local
181 start = vid_priv->fb + linenum * vid_priv->line_length + x * pbytes; in console_putc_xy_2()
202 int pbytes = VNBYTES(vid_priv->bpix); in console_set_row_3() local
206 start = vid_priv->fb + row * fontdata->height * pbytes; in console_set_row_3()
211 fill_pixel_and_goto_next(&dst, clr, pbytes, pbytes); in console_set_row_3()
230 int pbytes = VNBYTES(vid_priv->bpix); in console_move_rows_3() local
235 dst = vid_priv->fb + rowdst * fontdata->height * pbytes; in console_move_rows_3()
236 src = vid_priv->fb + rowsrc * fontdata->height * pbytes; in console_move_rows_3()
239 memmove(dst, src, fontdata->height * pbytes * count); in console_move_rows_3()
260 int pbytes = VNBYTES(vid_priv->bpix); in console_putc_xy_3() local
271 start = vid_priv->fb + linenum * vid_priv->line_length + y * pbytes; in console_putc_xy_3()