Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/staging/speakup/
Dmain.c1938 goto_pos = simple_strtoul(goto_buf, &cp, 10); in handle_goto()
1942 goto_pos += spk_x; in handle_goto()
1943 else if (goto_pos > 0) in handle_goto()
1944 goto_pos--; in handle_goto()
1946 if (goto_pos >= vc->vc_cols) in handle_goto()
1947 goto_pos = vc->vc_cols - 1; in handle_goto()
1951 goto_pos += spk_y; in handle_goto()
1952 else if (goto_pos > 0) in handle_goto()
1953 goto_pos--; in handle_goto()
1955 if (goto_pos >= vc->vc_rows) in handle_goto()
[all …]
Dspk_types.h91 #define goto_pos (speakup_console[vc->vc_num]->go_pos) macro