Lines Matching refs:pbytes
18 int pbytes = VNBYTES(vid_priv->bpix); in console_set_row_1() local
23 (row + 1) * VIDEO_FONT_HEIGHT * pbytes; in console_set_row_1()
68 int pbytes = VNBYTES(vid_priv->bpix); in console_move_rows_1() local
72 (rowdst + count) * VIDEO_FONT_HEIGHT * pbytes; in console_move_rows_1()
74 (rowsrc + count) * VIDEO_FONT_HEIGHT * pbytes; in console_move_rows_1()
77 memmove(dst, src, VIDEO_FONT_HEIGHT * pbytes * count); in console_move_rows_1()
90 int pbytes = VNBYTES(vid_priv->bpix); in console_putc_xy_1() local
97 vid_priv->line_length - (y + 1) * pbytes; in console_putc_xy_1()
277 int pbytes = VNBYTES(vid_priv->bpix); in console_set_row_3() local
281 line = vid_priv->fb + row * VIDEO_FONT_HEIGHT * pbytes; in console_set_row_3()
326 int pbytes = VNBYTES(vid_priv->bpix); in console_move_rows_3() local
329 dst = vid_priv->fb + rowdst * VIDEO_FONT_HEIGHT * pbytes; in console_move_rows_3()
330 src = vid_priv->fb + rowsrc * VIDEO_FONT_HEIGHT * pbytes; in console_move_rows_3()
333 memmove(dst, src, VIDEO_FONT_HEIGHT * pbytes * count); in console_move_rows_3()
346 int pbytes = VNBYTES(vid_priv->bpix); in console_putc_xy_3() local
351 vid_priv->line_length + y * pbytes; in console_putc_xy_3()