/osnet-11/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)) {
|
/osnet-11/usr/src/lib/libdtrace/common/ |
H A D | dt_regset.c | 86 ulong_t bit, bx; local 89 for (bit = 1, bx = 0; bx <= maxb; bx++, bit <<= 1) { 91 reg = (int)((wx << BT_ULSHIFT) | bx);
|
/osnet-11/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)
|
/osnet-11/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)
|
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt-grub/cipher/ |
H A D | rijndael.c | 403 unsigned char *bx, const unsigned char *ax) 420 memcpy (bx, b.b, 16); 429 unsigned char *bx, const unsigned char *ax) 461 memcpy (bx, b, 16); 595 do_decrypt (RIJNDAEL_context *ctx, byte *bx, const byte *ax) 619 memcpy (bx, b.b, 16); 401 do_encrypt(const RIJNDAEL_context *ctx, unsigned char *bx, const unsigned char *ax) argument 427 do_padlock(const RIJNDAEL_context *ctx, int decrypt_flag, unsigned char *bx, const unsigned char *ax) argument 593 do_decrypt(RIJNDAEL_context *ctx, byte *bx, const byte *ax) argument
|
/osnet-11/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:__anon228
|
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/ |
H A D | rijndael.c | 403 unsigned char *bx, const unsigned char *ax) 420 memcpy (bx, b.b, 16); 429 unsigned char *bx, const unsigned char *ax) 461 memcpy (bx, b, 16); 665 do_decrypt (RIJNDAEL_context *ctx, byte *bx, const byte *ax) 689 memcpy (bx, b.b, 16); 401 do_encrypt(const RIJNDAEL_context *ctx, unsigned char *bx, const unsigned char *ax) argument 427 do_padlock(const RIJNDAEL_context *ctx, int decrypt_flag, unsigned char *bx, const unsigned char *ax) argument 663 do_decrypt(RIJNDAEL_context *ctx, byte *bx, const byte *ax) argument
|