• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/ncurses-44/ncurses/ncurses/tty/

Lines Matching refs:bot

1592  * (lav): added more cases, used dl/il when bot==maxy and in csr case.
1602 scroll_csr_forward(int n, int top, int bot, int miny, int maxy, NCURSES_CH_T blank)
1606 if (n == 1 && scroll_forward && top == miny && bot == maxy) {
1607 GoTo(bot, 0);
1611 } else if (n == 1 && delete_line && bot == maxy) {
1616 } else if (parm_index && top == miny && bot == maxy) {
1617 GoTo(bot, 0);
1621 } else if (parm_delete_line && bot == maxy) {
1626 } else if (scroll_forward && top == miny && bot == maxy) {
1627 GoTo(bot, 0);
1633 } else if (delete_line && bot == maxy) {
1647 GoTo(bot - i, 0);
1659 scroll_csr_backward(int n, int top, int bot, int miny, int maxy,
1664 if (n == 1 && scroll_reverse && top == miny && bot == maxy) {
1669 } else if (n == 1 && insert_line && bot == maxy) {
1674 } else if (parm_rindex && top == miny && bot == maxy) {
1679 } else if (parm_insert_line && bot == maxy) {
1684 } else if (scroll_reverse && top == miny && bot == maxy) {
1691 } else if (insert_line && bot == maxy) {
1766 _nc_scrolln(int n, int top, int bot, int maxy)
1767 /* scroll region from top to bot by n lines */
1774 TR(TRACE_MOVE, ("mvcur_scrolln(%d, %d, %d, %d)", n, top, bot, maxy));
1790 res = scroll_csr_forward(n, top, bot, 0, maxy, blank);
1794 && (SP->_cursrow == bot || SP->_cursrow == bot - 1))
1801 putp(TPARM_2(change_scroll_region, top, bot));
1809 res = scroll_csr_forward(n, top, bot, top, bot, blank);
1817 res = scroll_idl(n, top, bot - n + 1, blank);
1823 && (non_dest_scroll_region || (memory_below && bot == maxy))) {
1825 if (bot == maxy && clr_eos) {
1826 GoTo(bot - n + 1, 0);
1830 GoTo(bot - i, 0);
1837 res = scroll_csr_backward(-n, top, bot, 0, maxy, blank);
1847 putp(TPARM_2(change_scroll_region, top, bot));
1855 res = scroll_csr_backward(-n, top, bot, top, bot, blank);
1863 res = scroll_idl(-n, bot + n + 1, top, blank);
1881 _nc_scroll_window(curscr, n, top, bot, blank);
1884 _nc_scroll_oldhash(n, top, bot);