Home
last modified time | relevance | path

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

/linux-5.19.10/drivers/auxdisplay/
Dcharlcd.c157 unsigned long new_x = *x; in parse_xy() local
169 new_x = simple_strtoul(s + 1, &p, 10); in parse_xy()
183 *x = new_x; in parse_xy()
/linux-5.19.10/drivers/tty/vt/
Dvt.c146 static void gotoxy(struct vc_data *vc, int new_x, int new_y);
1452 static void gotoxy(struct vc_data *vc, int new_x, int new_y) in gotoxy() argument
1456 if (new_x < 0) in gotoxy()
1459 if (new_x >= vc->vc_cols) in gotoxy()
1462 vc->state.x = new_x; in gotoxy()
1484 static void gotoxay(struct vc_data *vc, int new_x, int new_y) in gotoxay() argument
1486 gotoxy(vc, new_x, vc->vc_decom ? (vc->vc_top + new_y) : new_y); in gotoxay()