Lines Matching refs:c_copy
591 boot_fb_conscopy(struct vis_conscopy *c_copy) in boot_fb_conscopy() argument
598 soffset = c_copy->s_col * fb_info.bpp + c_copy->s_row * fb_info.pitch; in boot_fb_conscopy()
599 toffset = c_copy->t_col * fb_info.bpp + c_copy->t_row * fb_info.pitch; in boot_fb_conscopy()
609 width = (c_copy->e_col - c_copy->s_col + 1) * fb_info.bpp; in boot_fb_conscopy()
610 height = c_copy->e_row - c_copy->s_row + 1; in boot_fb_conscopy()
631 struct vis_conscopy c_copy; in boot_fb_shiftline() local
633 c_copy.s_col = fb_info.cursor.origin.x; in boot_fb_shiftline()
634 c_copy.s_row = fb_info.cursor.origin.y; in boot_fb_shiftline()
636 c_copy.e_col = (fb_info.terminal.x - chars) * boot_fb_font.vf_width; in boot_fb_shiftline()
637 c_copy.e_col += fb_info.terminal_origin.x; in boot_fb_shiftline()
638 c_copy.e_row = c_copy.s_row + boot_fb_font.vf_height; in boot_fb_shiftline()
640 c_copy.t_col = fb_info.cursor.origin.x + chars * boot_fb_font.vf_width; in boot_fb_shiftline()
641 c_copy.t_row = fb_info.cursor.origin.y; in boot_fb_shiftline()
643 boot_fb_conscopy(&c_copy); in boot_fb_shiftline()
652 struct vis_conscopy c_copy; in boot_fb_scroll() local
655 c_copy.s_row = fb_info.terminal_origin.y + boot_fb_font.vf_height; in boot_fb_scroll()
656 c_copy.s_col = fb_info.terminal_origin.x; in boot_fb_scroll()
657 c_copy.e_row = fb_info.screen.y - fb_info.terminal_origin.y; in boot_fb_scroll()
658 c_copy.e_col = fb_info.screen.x - fb_info.terminal_origin.x; in boot_fb_scroll()
659 c_copy.t_row = fb_info.terminal_origin.y; in boot_fb_scroll()
660 c_copy.t_col = fb_info.terminal_origin.x; in boot_fb_scroll()
662 boot_fb_conscopy(&c_copy); in boot_fb_scroll()