Lines Matching refs:curr_col
21 cons.curr_col = col; in lcd_set_col()
31 cons.curr_col = min_t(short, col, cons.cols - 1); in lcd_position_cursor()
93 if (--cons.curr_col < 0) { in console_back()
94 cons.curr_col = cons.cols - 1; in console_back()
100 cons.curr_col * VIDEO_FONT_WIDTH, in console_back()
110 cons.curr_col = 0; in console_newline()
169 cons.curr_col = 0; in lcd_putc()
176 cons.curr_col += 8; in lcd_putc()
177 cons.curr_col &= ~7; in lcd_putc()
179 if (cons.curr_col >= cons.cols) in lcd_putc()
189 cons.curr_col * VIDEO_FONT_WIDTH, in lcd_putc()
191 if (++cons.curr_col >= cons.cols) in lcd_putc()