Searched refs:rows_to_go (Results 1 – 1 of 1) sorted by relevance
1859 int rows_to_go = (nlines > 0 ? nlines : -nlines); in VSC_Generic() local1863 if ((rows_to_go + form->toprow) > (field->drows - field->rows)) in VSC_Generic()1864 rows_to_go = (field->drows - field->rows - form->toprow); in VSC_Generic()1866 if (rows_to_go > 0) in VSC_Generic()1868 form->currow += rows_to_go; in VSC_Generic()1869 form->toprow += rows_to_go; in VSC_Generic()1875 if (rows_to_go > form->toprow) in VSC_Generic()1876 rows_to_go = form->toprow; in VSC_Generic()1878 if (rows_to_go > 0) in VSC_Generic()1880 form->currow -= rows_to_go; in VSC_Generic()[all …]