Lines Matching refs:console_col
242 static int console_col; /* cursor col */ variable
545 video_invertchar(console_col * VIDEO_FONT_WIDTH, in console_cursor()
548 old_col = console_col; in console_cursor()
642 console_col--; in console_back()
644 if (console_col < 0) { in console_back()
645 console_col = CONSOLE_COLS - 1; in console_back()
675 if (console_col < 0) in console_cursor_fix()
676 console_col = 0; in console_cursor_fix()
677 if (console_col >= CONSOLE_COLS) in console_cursor_fix()
678 console_col = CONSOLE_COLS - 1; in console_cursor_fix()
695 console_col -= n; in console_cursor_left()
701 console_col += n; in console_cursor_right()
709 if (console_col != -1) in console_cursor_set_position()
710 console_col = col; in console_cursor_set_position()
743 console_col = 0; in console_newline()
754 console_col = 0; in console_cr()
770 if (console_col || nl) in parse_putc()
776 console_col |= 0x0008; in parse_putc()
777 console_col &= ~0x0007; in parse_putc()
779 if (console_col >= CONSOLE_COLS) in parse_putc()
791 video_putchar(console_col * VIDEO_FONT_WIDTH, in parse_putc()
793 console_col++; in parse_putc()
796 if (console_col >= CONSOLE_COLS) { in parse_putc()
978 console_col, in cfb_video_putc()
982 0, console_col); in cfb_video_putc()
2111 console_col = 0; in cfg_video_init()
2187 console_col = min(col, CONSOLE_COLS - 1); in video_position_cursor()