Lines Matching refs:goto_pos
1985 goto_pos = simple_strtoul(goto_buf, &cp, 10); in handle_goto()
1989 goto_pos += spk_x; in handle_goto()
1990 else if (goto_pos > 0) in handle_goto()
1991 goto_pos--; in handle_goto()
1993 if (goto_pos >= vc->vc_cols) in handle_goto()
1994 goto_pos = vc->vc_cols - 1; in handle_goto()
1998 goto_pos += spk_y; in handle_goto()
1999 else if (goto_pos > 0) in handle_goto()
2000 goto_pos--; in handle_goto()
2002 if (goto_pos >= vc->vc_rows) in handle_goto()
2003 goto_pos = vc->vc_rows - 1; in handle_goto()
2012 spk_x = goto_pos; in handle_goto()
2013 spk_pos += goto_pos * 2; in handle_goto()
2016 spk_y = goto_pos; in handle_goto()
2017 spk_pos = vc->vc_origin + (goto_pos * vc->vc_size_row); in handle_goto()