Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/staging/speakup/
Dmain.c1936 goto_pos = simple_strtoul(goto_buf, &cp, 10); in handle_goto()
1940 goto_pos += spk_x; in handle_goto()
1941 else if (goto_pos > 0) in handle_goto()
1942 goto_pos--; in handle_goto()
1944 if (goto_pos >= vc->vc_cols) in handle_goto()
1945 goto_pos = vc->vc_cols - 1; in handle_goto()
1949 goto_pos += spk_y; in handle_goto()
1950 else if (goto_pos > 0) in handle_goto()
1951 goto_pos--; in handle_goto()
1953 if (goto_pos >= vc->vc_rows) in handle_goto()
[all …]
Dspk_types.h91 #define goto_pos (speakup_console[vc->vc_num]->go_pos) macro