Home
last modified time | relevance | path

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

/NextBSD/contrib/ncurses/form/
HDfrm_driver.c1944 int rows_to_go = (nlines > 0 ? nlines : -nlines); in VSC_Generic() local
1948 if ((rows_to_go + form->toprow) > (field->drows - field->rows)) in VSC_Generic()
1949 rows_to_go = (field->drows - field->rows - form->toprow); in VSC_Generic()
1951 if (rows_to_go > 0) in VSC_Generic()
1953 form->currow += rows_to_go; in VSC_Generic()
1954 form->toprow += rows_to_go; in VSC_Generic()
1960 if (rows_to_go > form->toprow) in VSC_Generic()
1961 rows_to_go = form->toprow; in VSC_Generic()
1963 if (rows_to_go > 0) in VSC_Generic()
1965 form->currow -= rows_to_go; in VSC_Generic()
[all …]