Lines Matching refs:curr_col
20 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()
188 cons.curr_col * VIDEO_FONT_WIDTH, in lcd_putc()
190 if (++cons.curr_col >= cons.cols) in lcd_putc()