Home
last modified time | relevance | path

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

/linux-2.6.39/drivers/tty/vt/
Dvt.c151 static void gotoxy(struct vc_data *vc, int new_x, int new_y);
1070 static void gotoxy(struct vc_data *vc, int new_x, int new_y) in gotoxy() argument
1074 if (new_x < 0) in gotoxy()
1077 if (new_x >= vc->vc_cols) in gotoxy()
1080 vc->vc_x = new_x; in gotoxy()
1101 static void gotoxay(struct vc_data *vc, int new_x, int new_y) in gotoxay() argument
1103 gotoxy(vc, new_x, vc->vc_decom ? (vc->vc_top + new_y) : new_y); in gotoxay()