Lines Matching refs:nc
44 int i, by, bx, nl, nc;
50 nc = num_cols;
54 if (nc == 0)
55 nc = COLS - bx;
56 if ((win = makenew(nl, nc, by, bx)) == NULL)
75 if ((win->_y[i] = malloc(nc * sizeof (win->_y[0]))) == NULL) {
85 for (sp = win->_y[i]; sp < win->_y[i] + nc; )
98 int by, bx, nl, nc;
103 nc = num_cols;
109 fprintf(outf, "SUBWIN(%0.2o, %d, %d, %d, %d)\n", orig, nl, nc, by, bx);
113 bx + nc > orig->_maxx + orig->_begx)
117 if (nc == 0)
118 nc = orig->_maxx + orig->_begx - bx;
119 if ((win = makenew(nl, nc, by, bx)) == NULL)
158 int by, bx, nl, nc;
163 nc = num_cols;
166 fprintf(outf, "MAKENEW(%d, %d, %d, %d)\n", nl, nc, by, bx);
178 fprintf(outf, "MAKENEW: nc = %d\n", nc);
183 win->_maxx = (short)nc;