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

/illumos-gate/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...]
/illumos-gate/usr/src/boot/sys/boot/efi/libefi/
H A Defi_console.c51 void curs_move(UINTN *_x, UINTN *_y, UINTN x, UINTN y);
88 curs_move(UINTN *_x, UINTN *_y, UINTN x, UINTN y) argument
93 if (_y != NULL)
94 *_y = conout->Mode->CursorRow;
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Dvidconsole.c61 void curs_move(int *_x, int *_y, int x, int y);
223 curs_move(int *_x, int *_y, int x, int y) argument
234 if (_y != NULL)
235 *_y = y;
/illumos-gate/usr/src/ucbhead/
H A Dcurses.h85 char **_y; member in struct:_win_st
159 #define winch(win) (win->_y[win->_cury][win->_curx] & 0177)

Completed in 77 milliseconds