Home
last modified time | relevance | path

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

/Linux-v5.4/drivers/staging/speakup/
Dmain.c1986 goto_pos = simple_strtoul(goto_buf, &cp, 10); in handle_goto()
1990 goto_pos += spk_x; in handle_goto()
1991 else if (goto_pos > 0) in handle_goto()
1992 goto_pos--; in handle_goto()
1994 if (goto_pos >= vc->vc_cols) in handle_goto()
1995 goto_pos = vc->vc_cols - 1; in handle_goto()
1999 goto_pos += spk_y; in handle_goto()
2000 else if (goto_pos > 0) in handle_goto()
2001 goto_pos--; in handle_goto()
2003 if (goto_pos >= vc->vc_rows) in handle_goto()
[all …]
Dspk_types.h90 #define goto_pos (speakup_console[vc->vc_num]->go_pos) macro