new_x             337 drivers/auxdisplay/charlcd.c 	unsigned long new_x = *x;
new_x             348 drivers/auxdisplay/charlcd.c 			if (!parse_n(s + 1, &new_x, &s))
new_x             358 drivers/auxdisplay/charlcd.c 	*x = new_x;
new_x             154 drivers/tty/vt/vt.c static void gotoxy(struct vc_data *vc, int new_x, int new_y);
new_x            1429 drivers/tty/vt/vt.c static void gotoxy(struct vc_data *vc, int new_x, int new_y)
new_x            1433 drivers/tty/vt/vt.c 	if (new_x < 0)
new_x            1436 drivers/tty/vt/vt.c 		if (new_x >= vc->vc_cols)
new_x            1439 drivers/tty/vt/vt.c 			vc->vc_x = new_x;
new_x            1460 drivers/tty/vt/vt.c static void gotoxay(struct vc_data *vc, int new_x, int new_y)
new_x            1462 drivers/tty/vt/vt.c 	gotoxy(vc, new_x, vc->vc_decom ? (vc->vc_top + new_y) : new_y);