Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libcurses/screen/
H A Dwaddchnstr.c56 int remcols; in waddchnstr() local
62 remcols = win->_maxx - my_x; in waddchnstr()
63 while (*string && remcols) { in waddchnstr()
66 if (remcols < sw) in waddchnstr()
72 remcols -= sw; in waddchnstr()
75 remcols = win->_maxx - my_x; in waddchnstr()
76 while ((*string) && (remcols > 0) && (ncols > 0)) { in waddchnstr()
79 if ((remcols < sw) || (ncols < ew)) in waddchnstr()
85 remcols -= sw; in waddchnstr()
/titanic_50/usr/src/cmd/vi/port/
H A Dex_subr.c653 int remcols; local
670 if ((mc_wrap) == 1 && (remcols = (WCOLS - (vcntcol % WCOLS))) < cols)
671 vcntcol += remcols;