Lines Matching refs:console_col
243 static int console_col; /* cursor col */ variable
546 video_invertchar(console_col * VIDEO_FONT_WIDTH, in console_cursor()
549 old_col = console_col; in console_cursor()
643 console_col--; in console_back()
645 if (console_col < 0) { in console_back()
646 console_col = CONSOLE_COLS - 1; in console_back()
676 if (console_col < 0) in console_cursor_fix()
677 console_col = 0; in console_cursor_fix()
678 if (console_col >= CONSOLE_COLS) in console_cursor_fix()
679 console_col = CONSOLE_COLS - 1; in console_cursor_fix()
696 console_col -= n; in console_cursor_left()
702 console_col += n; in console_cursor_right()
710 if (console_col != -1) in console_cursor_set_position()
711 console_col = col; in console_cursor_set_position()
744 console_col = 0; in console_newline()
755 console_col = 0; in console_cr()
771 if (console_col || (!console_col && nl)) in parse_putc()
777 console_col |= 0x0008; in parse_putc()
778 console_col &= ~0x0007; in parse_putc()
780 if (console_col >= CONSOLE_COLS) in parse_putc()
792 video_putchar(console_col * VIDEO_FONT_WIDTH, in parse_putc()
794 console_col++; in parse_putc()
797 if (console_col >= CONSOLE_COLS) { in parse_putc()
979 console_col, in cfb_video_putc()
983 0, console_col); in cfb_video_putc()
2095 console_col = 0; in cfg_video_init()
2171 console_col = min(col, CONSOLE_COLS - 1); in video_position_cursor()