/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | mvwin.c | 50 mvwin(WINDOW *win, int by, int bx) argument 52 if ((by + win->_maxy) > LINES || (bx + win->_maxx) > COLS || 53 by < 0 || bx < 0) 58 win->_begx = (short) bx;
|
H A D | _subpad.c | 49 subpad(WINDOW *win, int l, int nc, int by, int bx) argument 51 return (derwin(win, l, nc, by, bx));
|
H A D | subwin.c | 48 subwin(WINDOW *win, int l, int nc, int by, int bx) argument 50 return (derwin(win, l, nc, by - win->_begy, bx - win->_begx));
|
H A D | derwin.c | 52 * by, bx: coordinates for upper-left corner of the derived 57 derwin(WINDOW *orig, int num_lines, int nc, int by, int bx) argument 67 if (by < 0 || (by + num_lines) > orig->_maxy || bx < 0 || 68 (bx + nc) > orig->_maxx) 71 nc = orig->_maxx - bx; 77 bx + orig->_begx)) == NULL) 82 win->_parx = (short) bx; 98 w_y16[y] = o_y16[hby] + bx; 103 w_y[y] = o_y[by] + bx;
|
H A D | newwin.c | 51 newwin(int nlines, int ncols, int by, int bx) argument 59 ncols = COLS - bx; 61 if ((by < 0) || (bx < 0) || ((win = _makenew(nlines, ncols, by, 62 bx)) == (WINDOW *) NULL) || (_image(win) == ERR)) {
|
/illumos-gate/usr/src/ucblib/libcurses/ |
H A D | mvwin.c | 31 mvwin(WINDOW *win, int by, int bx) argument 36 if (by + win->_maxy > LINES || bx + win->_maxx > COLS) 39 dx = bx - win->_begx; 52 if (bx < orig->_begx || win->_maxx + dx > orig->_maxx) 55 win->_begx = (short)bx;
|
H A D | newwin.c | 44 int i, by, bx, nl, nc; local 48 bx = begx; 55 nc = COLS - bx; 56 if ((win = makenew(nl, nc, by, bx)) == NULL) 98 int by, bx, nl, nc; local 101 bx = begx; 109 fprintf(outf, "SUBWIN(%0.2o, %d, %d, %d, %d)\n", orig, nl, nc, by, bx); 111 if (by < orig->_begy || bx < orig->_begx || 113 bx + nc > orig->_maxx + orig->_begx) 118 nc = orig->_maxx + orig->_begx - bx; 158 int by, bx, nl, nc; local [all...] |
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | mvwin.c | 56 mvwin(WINDOW *w, int by, int bx) argument 62 if (by < 0 || bx < 0) 67 if (lines < by + w->_maxy || columns < bx + w->_maxx) 72 parent->_begx + parent->_maxx < bx + w->_maxx) 80 dx = bx - parent->_begx; 87 w->_begx = (short) bx;
|
H A D | getwin.c | 83 int by, bx, my, mx; local 86 if (fscanf(fp, "MAX=%d,%d BEG=%d,%d ", &my, &mx, &by, &bx) < 4) 92 if ((w = newwin(my, mx, by, bx)) == NULL)
|
/illumos-gate/usr/src/lib/libdtrace/common/ |
H A D | dt_regset.c | 109 ulong_t bit, bx; local 112 for (bit = 1, bx = 0; bx <= maxb; bx++, bit <<= 1) { 114 reg = (int)((wx << BT_ULSHIFT) | bx);
|
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | getwin.c | 81 int by, bx, my, mx; local 88 if (fscanf(fp, "MAX=%d,%d BEG=%d,%d ", &my, &mx, &by, &bx) < 4) 94 if ((w = newwin(my, mx, by, bx)) == (WINDOW *) 0)
|
/illumos-gate/usr/src/uts/common/os/ |
H A D | bitmap.c | 72 index_t bx; /* bit index in word */ local 80 for (bx = 0; bx <= maxbit; bx++, bit <<= 1) { 82 return (wx << BT_ULSHIFT | bx);
|
H A D | errorq.c | 478 ulong_t bit, maxbit, bx; local 494 for (bx = 0, bit = 1; bx <= maxbit; bx++, bit <<= 1) 495 if (bx >= nextbitindex && !(bitmap[nextword] & bit)) 496 return ((nextword << BT_ULSHIFT) + bx);
|
/illumos-gate/usr/src/grub/grub-0.97/netboot/ |
H A D | pci_io.c | 148 unsigned long bx = (bus << 8) | device_fn; local 164 "b" (bx), 175 unsigned long bx = (bus << 8) | device_fn; local 191 "b" (bx), 202 unsigned long bx = (bus << 8) | device_fn; local 218 "b" (bx), 229 unsigned long bx = (bus << 8) | device_fn; local 245 "b" (bx), 256 unsigned long bx = (bus << 8) | device_fn; local 272 "b" (bx), 283 unsigned long bx = (bus << 8) | device_fn; local [all...] |
H A D | undi.h | 50 uint16_t bx; member in struct:undi_loader
|
H A D | pxe.h | 138 uint16_t bx; member in struct:__anon2104
|
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/ |
H A D | pxe.h | 129 uint16_t bx; member in struct:__anon290
|
/illumos-gate/usr/src/uts/i86pc/os/ |
H A D | fakebop.c | 801 unsigned short ax, bx, cx, dx, si, di, bp, es, ds; member in struct:bios_regs 829 br.bx = rp->ebx.word.bx; 840 DBG(br.bx); 846 rp->ebx.word.bx = br.bx;
|