Home
last modified time | relevance | path

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

/drivers/staging/speakup/
Dmain.c1933 goto_pos = simple_strtoul(goto_buf, &cp, 10); in handle_goto()
1937 goto_pos += spk_x; in handle_goto()
1938 else if (goto_pos > 0) in handle_goto()
1939 goto_pos--; in handle_goto()
1941 if (goto_pos >= vc->vc_cols) in handle_goto()
1942 goto_pos = vc->vc_cols - 1; in handle_goto()
1946 goto_pos += spk_y; in handle_goto()
1947 else if (goto_pos > 0) in handle_goto()
1948 goto_pos--; in handle_goto()
1950 if (goto_pos >= vc->vc_rows) in handle_goto()
[all …]
Dspk_types.h90 #define goto_pos (speakup_console[vc->vc_num]->go_pos) macro