Home
last modified time | relevance | path

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

/external/u-boot/common/
Dlcd_console.c20 cons.curr_col = col; in lcd_set_col()
30 cons.curr_col = min_t(short, col, cons.cols - 1); in lcd_position_cursor()
92 if (--cons.curr_col < 0) { in console_back()
93 cons.curr_col = cons.cols - 1; in console_back()
99 cons.curr_col * VIDEO_FONT_WIDTH, in console_back()
109 cons.curr_col = 0; in console_newline()
168 cons.curr_col = 0; in lcd_putc()
175 cons.curr_col += 8; in lcd_putc()
176 cons.curr_col &= ~7; in lcd_putc()
178 if (cons.curr_col >= cons.cols) in lcd_putc()
[all …]
/external/u-boot/include/
Dlcd_console.h9 short curr_col, curr_row; member