Lines Matching refs:count

204     long	count,  in do_mouse()  argument
338 if (count > 1) in do_mouse()
339 stuffnumReadbuff(count); in do_mouse()
847 prep_redo(regname, count, NUL, c1, NUL, c2, NUL); in do_mouse()
853 do_put(regname, NULL, dir, count, fixindent | PUT_CURSEND); in do_mouse()
1515 int count; in jump_to_mouse() local
1793 count = row - dragwin->w_winrow - dragwin->w_height + 1 in jump_to_mouse()
1795 win_drag_status_line(dragwin, count); in jump_to_mouse()
1796 did_drag |= count; in jump_to_mouse()
1805 count = col - dragwin->w_wincol - dragwin->w_width + 1 in jump_to_mouse()
1807 win_drag_vsep_line(dragwin, count); in jump_to_mouse()
1808 did_drag |= count; in jump_to_mouse()
1855 count = 0; in jump_to_mouse()
1860 ++count; in jump_to_mouse()
1863 count += plines(curwin->w_topline - 1); in jump_to_mouse()
1864 if (!first && count > -row) in jump_to_mouse()
1892 count = 0; in jump_to_mouse()
1897 ++count; in jump_to_mouse()
1900 count += plines(curwin->w_topline); in jump_to_mouse()
1901 if (!first && count > row - curwin->w_height + 1) in jump_to_mouse()
1986 count = IN_BUFFER; in jump_to_mouse()
1989 count |= CURSOR_MOVED; // Cursor has moved in jump_to_mouse()
1993 count |= MOUSE_FOLD_OPEN; in jump_to_mouse()
1995 count |= MOUSE_FOLD_CLOSE; in jump_to_mouse()
1998 return count; in jump_to_mouse()
2869 int count; in mouse_comp_pos() local
2886 count = plines_cache[cache_idx]; in mouse_comp_pos()
2901 count = plines_win_nofill(win, lnum, TRUE); in mouse_comp_pos()
2905 count = plines_win(win, lnum, TRUE); in mouse_comp_pos()
2907 plines_cache[cache_idx] = count; in mouse_comp_pos()
2909 if (count > row) in mouse_comp_pos()
2919 row -= count; in mouse_comp_pos()
3041 int count = 0; in vcol2col() local
3046 while (count < vcol && *ptr != NUL) in vcol2col()
3048 count += win_lbr_chartabsize(wp, line, ptr, count, NULL); in vcol2col()
3101 int count; in f_getmousepos() local
3107 count = (int)STRLEN(p); in f_getmousepos()
3108 if (col > count) in f_getmousepos()
3109 col = count; in f_getmousepos()