Searched defs:bx (Results 1 - 14 of 14) sorted by relevance

/osnet-11/usr/src/lib/libcurses/screen/
H A Dmvwin.c50 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.c49 subpad(WINDOW *win, int l, int nc, int by, int bx) argument
51 return (derwin(win, l, nc, by, bx));
H A Dsubwin.c48 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 Dderwin.c52 * 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 Dnewwin.c51 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 Ddt_regset.c86 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 Dmvwin.c56 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 Dgetwin.c83 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 Dgetwin.c81 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 Drijndael.c403 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 Dpci_io.c148 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 Dundi.h50 uint16_t bx; member in struct:undi_loader
H A Dpxe.h138 uint16_t bx; member in struct:__anon228
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Drijndael.c403 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

Completed in 36 milliseconds