Searched refs:new_x (Results 1 - 2 of 2) sorted by relevance

/linux-master/drivers/auxdisplay/
H A Dcharlcd.c157 unsigned long new_x = *x; local
169 new_x = simple_strtoul(s + 1, &p, 10);
183 *x = new_x;
/linux-master/drivers/tty/vt/
H A Dvt.c144 static void gotoxy(struct vc_data *vc, int new_x, int new_y);
1388 static void gotoxy(struct vc_data *vc, int new_x, int new_y) argument
1392 if (new_x < 0)
1395 if (new_x >= vc->vc_cols)
1398 vc->state.x = new_x;
1420 static void gotoxay(struct vc_data *vc, int new_x, int new_y) argument
1422 gotoxy(vc, new_x, vc->vc_decom ? (vc->vc_top + new_y) : new_y);

Completed in 1484 milliseconds