Lines Matching refs:goto_pos
1997 goto_pos = simple_strtoul(goto_buf, &cp, 10); in handle_goto()
2001 goto_pos += spk_x; in handle_goto()
2002 else if (goto_pos > 0) in handle_goto()
2003 goto_pos--; in handle_goto()
2005 if (goto_pos >= vc->vc_cols) in handle_goto()
2006 goto_pos = vc->vc_cols - 1; in handle_goto()
2010 goto_pos += spk_y; in handle_goto()
2011 else if (goto_pos > 0) in handle_goto()
2012 goto_pos--; in handle_goto()
2014 if (goto_pos >= vc->vc_rows) in handle_goto()
2015 goto_pos = vc->vc_rows - 1; in handle_goto()
2024 spk_x = goto_pos; in handle_goto()
2025 spk_pos += goto_pos * 2; in handle_goto()
2028 spk_y = goto_pos; in handle_goto()
2029 spk_pos = vc->vc_origin + (goto_pos * vc->vc_size_row); in handle_goto()