Lines Matching refs:pbytes
17 int pbytes = VNBYTES(vid_priv->bpix); in console_set_row_1() local
22 (row + 1) * VIDEO_FONT_HEIGHT * pbytes; in console_set_row_1()
67 int pbytes = VNBYTES(vid_priv->bpix); in console_move_rows_1() local
71 (rowdst + count) * VIDEO_FONT_HEIGHT * pbytes; in console_move_rows_1()
73 (rowsrc + count) * VIDEO_FONT_HEIGHT * pbytes; in console_move_rows_1()
76 memmove(dst, src, VIDEO_FONT_HEIGHT * pbytes * count); in console_move_rows_1()
89 int pbytes = VNBYTES(vid_priv->bpix); in console_putc_xy_1() local
96 vid_priv->line_length - (y + 1) * pbytes; in console_putc_xy_1()
276 int pbytes = VNBYTES(vid_priv->bpix); in console_set_row_3() local
280 line = vid_priv->fb + row * VIDEO_FONT_HEIGHT * pbytes; in console_set_row_3()
325 int pbytes = VNBYTES(vid_priv->bpix); in console_move_rows_3() local
328 dst = vid_priv->fb + rowdst * VIDEO_FONT_HEIGHT * pbytes; in console_move_rows_3()
329 src = vid_priv->fb + rowsrc * VIDEO_FONT_HEIGHT * pbytes; in console_move_rows_3()
332 memmove(dst, src, VIDEO_FONT_HEIGHT * pbytes * count); in console_move_rows_3()
345 int pbytes = VNBYTES(vid_priv->bpix); in console_putc_xy_3() local
350 vid_priv->line_length + y * pbytes; in console_putc_xy_3()