Lines Matching refs:nlines
52 _makenew(int nlines, int ncols, int begy, int begx) in _makenew() argument
60 nlines, ncols, begy, begx); in _makenew()
65 if ((win->_y = (chtype **) malloc(nlines * sizeof (chtype *))) == NULL) in _makenew()
69 calloc(1, nlines * sizeof (_ochtype *))) == NULL)) { in _makenew()
73 if ((win->_firstch = (short *) malloc(2 * nlines * sizeof (short))) in _makenew()
90 win->_lastch = win->_firstch + nlines; in _makenew()
94 win->_maxy = (short) nlines; in _makenew()
102 (nlines >= (LINES + SP->Yabove)) && (ncols >= COLS)); in _makenew()
107 win->_bmarg = nlines - 1; in _makenew()
113 (void) memset((char *) win->_firstch, 0, (nlines * sizeof (short))); in _makenew()
116 *elastch = lastch + nlines; in _makenew()