Searched defs:_y (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libcurses/screen/
H A Dnewwin.c67 memSset(&win->_y[counter][0], (chtype) ' ', ncols);
91 chtype **_y = win->_y; local
98 if (((_y[i] = (chtype *) malloc(scols)) == NULL) ||
102 if ((_y[i] = (chtype *) malloc(scols)) ==
114 if (_y[j] != NULL)
115 free((char *) _y[j]);
121 free((char *) _y[j]);
125 free((char *) win->_y);
H A Dwaddnstr.c55 chtype **_y = win->_y; local
118 if (_scrmax > 1 && ISMBIT(_y[cury][curx]) &&
126 _y[cury][curx] = ch;
H A Dwborder.c82 chtype **_y = win->_y; /* register version */ local
111 if (!ISCBIT(_y[0][x]))
114 if (!ISCBIT(_y[0][endx])) {
116 wc = RBYTE(_y[0][xend]);
125 memSset((line_ptr = &_y[0][sx]), _TOPSIDE, endx);
134 if (!ISCBIT(_y[endy][x]))
137 if (!ISCBIT(_y[endy][xend])) {
139 wc = RBYTE(_y[endy][xend]);
149 memSset((line_ptr = &_y[end
[all...]

Completed in 28 milliseconds