Lines Matching refs:start_y
549 int start_x = 0, start_y = 0; in show_scroll_win() local
595 copywin(pad, win, start_y, start_x, 2, 2, text_lines, in show_scroll_win()
610 start_y += text_lines-2; in show_scroll_win()
614 start_y -= text_lines+2; in show_scroll_win()
617 start_y = 0; in show_scroll_win()
620 start_y = total_lines-text_lines; in show_scroll_win()
624 start_y++; in show_scroll_win()
628 start_y--; in show_scroll_win()
643 if (start_y < 0) in show_scroll_win()
644 start_y = 0; in show_scroll_win()
645 if (start_y >= total_lines-text_lines) in show_scroll_win()
646 start_y = total_lines-text_lines; in show_scroll_win()