Home
last modified time | relevance | path

Searched refs:console_col (Results 1 – 1 of 1) sorted by relevance

/external/u-boot/drivers/video/
Dcfb_console.c242 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()
[all …]