Searched refs:bx (Results 1 - 25 of 38) sorted by relevance

12

/osnet-11/usr/src/lib/libcurses/screen/
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 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 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 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 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/libxcurses/src/libc/xcurses/
H A Dmvwin.c53 mvwin(w, by, bx)
55 int by, bx;
61 __m_trace("mvwin(%p, %d, %d)", w, by, bx);
65 if (by < 0 || bx < 0)
70 if (lines < by + w->_maxy || columns < bx + w->_maxx)
75 || parent->_begx + parent->_maxx < bx + w->_maxx)
82 dx = bx - parent->_begx;
89 w->_begx = bx;
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/grub-0.97/stage2/
H A Dapm.S36 xorw %bx, %bx
42 cmpw $0x504d, %bx
53 xorw %bx, %bx
89 xorw %bx, %bx
97 cmpw $0x504d, %bx
114 xorw %bx, %bx
[all...]
H A Dpxeloader.S34 1: popw %bx
38 movw %ax, %cs:(pxeseg-1b)(%bx)
40 movw %ax, %cs:(pxeoff-1b)(%bx)
41 movw %ax, %bx
H A Dasm.S33 ax,dx,cx,bx,si,di,bp,sp,st,st1,st2,st3,st4,st5,st6,st7,arg
241 movw %dx,%bx /* into %es:%bx */
243 movw %es:8(%bx),%ax /* Transfer contents of undi_call_info_t */
245 movw %es:6(%bx),%ax
247 movw %es:4(%bx),%ax
250 lcall *%es:0(%bx) /* Do the UNDI call */
281 pushw %bx
284 1: popw %bx /* various locations. */
285 pushw %bx /* sav
[all...]
H A Dstart_eltorito.S104 mov $(STAGE_ADDR >> 4), %bx
105 mov %bx, %es
106 xor %bx, %bx
138 mov %bx, 4(%si)
139 mov %es, %bx
140 mov %bx, 6(%si)
214 * WARNING: trashes %si, %ax, and %bx
223 mov $0x0001, %bx
259 mov $0x0001, %bx
[all...]
H A Dstart.S160 movw $BUFFERSEG, %bx
244 * %es:%bx = segment:offset of buffer
249 movw $BUFFERSEG, %bx
250 movw %bx, %es /* load %es segment with disk buffer */
252 xorw %bx, %bx /* %bx = 0, put it at 0 in the segment */
259 movw %es, %bx
285 movw %bx, %ds /* restore the source segment */
357 * WARNING: trashes %si, %ax, and %bx
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigInt/
H A DCalcEmu.pm30 my ($bx,$by);
34 # two's complement: inc and flip all "bits" in $bx
35 $bx = $x->binc()->as_hex(); # -1 => 0, -2 => 1, -3 => 2 etc
36 $bx =~ s/-?0x//;
37 $bx =~ tr/0123456789abcdef/\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08\x07\x06\x05\x04\x03\x02\x01\x00/;
41 $bx = $x->as_hex(); # get binary representation
42 $bx =~ s/-?0x//;
43 $bx =~ tr/fedcba9876543210/\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08\x07\x06\x05\x04\x03\x02\x01\x00/;
59 $bx = reverse $bx;
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/commands/i386/pc/
H A Ddrivemap_int13h.S38 push %bx
39 movw $INT13H_OFFSET(LOCAL (mapstart)), %bx
42 movw %cs:(%bx), %ax
45 inc %bx
46 inc %bx
52 pop %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/grub/grub2/grub-core/mmap/i386/pc/
H A Dmmap_helper.S57 movw DS (LOCAL (m64kbin4gb)), %bx
59 movw %bx, %dx
81 cmpw DS (LOCAL (mmap_num)), %bx
89 mov %bx, %ax
96 inc %bx
97 cmpw DS(LOCAL (mmap_num)), %bx
99 xor %bx, %bx
108 xor %bx, %bx
[all...]
/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/grub/grub2/grub-core/boot/i386/pc/
H A Dboot.S161 movw $0x55aa, %bx
173 cmpw $0xaa55, %bx
217 movw $GRUB_BOOT_MACHINE_BUFFER_SEG, %bx
316 * %es:%bx = segment:offset of buffer
321 movw $GRUB_BOOT_MACHINE_BUFFER_SEG, %bx
322 movw %bx, %es /* load %es segment with disk buffer */
324 xorw %bx, %bx /* %bx = 0, put it at 0 in the segment */
330 movw %es, %bx
[all...]
H A Dcdboot.S60 popw %bx
71 movl %cs: bi_length - LOCAL(next)(%bx), %ecx
78 movl %cs: bi_file - LOCAL(next)(%bx), %esi
156 xorw %bx, %bx
H A Ddiskboot.S140 movw $GRUB_BOOT_MACHINE_BUFFER_SEG, %bx
230 * %es:%bx = segment:offset of buffer
235 movw $GRUB_BOOT_MACHINE_BUFFER_SEG, %bx
236 movw %bx, %es /* load %es segment with disk buffer */
238 xorw %bx, %bx /* %bx = 0, put it at 0 in the segment */
245 movw %es, %bx
271 movw %bx, %ds /* restore the source segment */
335 * WARNING: trashes %si, %ax, and %bx
[all...]
H A Dlnxboot.S133 popw %bx
134 subw $(LOCAL(normalize) - start), %bx
135 shrw $4, %bx
137 addw %bx, %ax
278 xorw %bx, %bx
/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...]
/osnet-11/usr/src/grub/grub-0.97/stage1/
H A Dstage1.S162 movw $0x55aa, %bx
174 cmpw $0xaa55, %bx
227 movw $STAGE1_BUFFERSEG, %bx
333 * %es:%bx = segment:offset of buffer
338 movw $STAGE1_BUFFERSEG, %bx
339 movw %bx, %es /* load %es segment with disk buffer */
341 xorw %bx, %bx /* %bx = 0, put it at 0 in the segment */
347 movw %es, %bx
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/
H A Dtied_hook.t218 my $bx = thaw freeze $bc;
220 ok 22, ref $bx eq 'FOO';
222 my $v = $bx->{attribute};
242 $bx = thaw freeze $bc;
244 ok 24, ref $bx eq 'TIED_HASH_REF';
246 $v = $bx->{attribute};

Completed in 28 milliseconds

12