Searched refs:lx (Results 1 - 24 of 24) sorted by relevance

/opensolaris-onvv-gate/usr/src/pkg/manifests/
H A Dsystem-zones-brand-lx.mf26 set name=pkg.fmri value=pkg:/system/zones/brand/lx@0.5.11,5.11-0.143
/opensolaris-onvv-gate/usr/src/lib/libc/sparc/fp/
H A D__quad_mag.c48 unsigned int lx, ly, ex, ey, frac2, frac3, frac4; local
54 lx = x->l.msw & 0xffff;
58 lx |= 0x10000;
127 lx += ly;
129 lx++;
132 if (lx >= 0x20000) {
137 frac2 = (frac2 >> 1) | (lx << 31);
138 lx >>= 1;
144 uflo = (lx < 0x10000);
162 if (++lx >
208 unsigned int lx, ly, ex, ey, frac2, frac3, frac4; local
[all...]
H A D_Q_sqrt.c99 unsigned int xm, fsr, lx, wx[3]; local
167 lx = xm & 0xffff;
169 lx |= 0x10000;
174 if (lx | (x->l.frac2 & 0xfffe0000)) {
180 lx = x->l.frac2;
186 lx = x->l.frac3;
191 lx = x->l.frac4;
195 while ((lx & 0x10000) == 0) {
196 lx = (lx <<
[all...]
H A D_Q_mul.c90 unsigned int xm, ym, fsr, lx, ly, wx[3], wy[3]; local
203 lx = xm & 0xffff;
205 lx |= 0x10000;
210 if (lx | (x->l.frac2 & 0xfffe0000)) {
216 lx = x->l.frac2;
222 lx = x->l.frac3;
227 lx = x->l.frac4;
231 while ((lx & 0x10000) == 0) {
232 lx = (lx <<
[all...]
H A D_Q_div.c108 unsigned int xm, ym, fsr, lx, ly, wx[3], wy[3]; local
235 lx = xm & 0xffff;
237 lx |= 0x10000;
242 if (lx | (x->l.frac2 & 0xfffe0000)) {
248 lx = x->l.frac2;
254 lx = x->l.frac3;
259 lx = x->l.frac4;
263 while ((lx & 0x10000) == 0) {
264 lx = (lx <<
[all...]
/opensolaris-onvv-gate/usr/src/ucblib/libcurses/
H A Drefresh.c39 DEBUGSTATIC short ly, lx; variable
67 lx = curscr->_curx;
75 lx = 0;
121 domvcur(ly, lx, win->_cury, win->_curx);
125 curscr->_curx = lx;
127 lx -= win->_begx;
128 if (ly >= 0 && ly < win->_maxy && lx >= 0 &&
129 lx < win->_maxx) {
131 win->_curx = lx;
136 domvcur(ly, lx, wi
[all...]
H A Dcr_put.c57 mvcur(int ly, int lx, int y, int x) argument
61 ly, lx, y, x);
65 outcol = lx;
/opensolaris-onvv-gate/usr/src/cmd/oawk/
H A DMakefile40 OBJS = awk.g.o awk.lx.o proctab.o tmptoken.o \
59 tmptoken.c awk.lx.c $(NATIVEOBJS) $(MAKEPRCTAB) \
88 awk.lx.c: awk.lx.l
89 $(LEX.l) -w awk.lx.l > awk.lx.c
H A DREADME106 lex awk.lx.l
108 mv lex.yy.o awk.lx.o
121 cc -i -O awk.g.o awk.lx.o b.o main.o token.o tran.o lib.o run.o parse.o proctab.o -lm
/opensolaris-onvv-gate/usr/src/cmd/awk/
H A DMakefile36 OBJ2= awk.g.o awk.lx.o
53 CLEANFILES= maketab proctab.c awk.g.c awk.lx.c y.tab.h
89 awk.lx.c: awk.lx.l
/opensolaris-onvv-gate/usr/src/lib/libc/sparcv9/fp/
H A D__quad_mag64.s64 ! unsigned long lx, ly, frac, sticky;
70 ! lx = x->ll.msll & ~0xffff000000000000ul;
74 ! lx |= 0x0001000000000000ul;
107 ! lx += ly;
109 ! lx++;
112 ! if (lx >= 0x0002000000000000ul) {
115 ! frac = (frac >> 1) | (lx << 63);
116 ! lx >>= 1;
122 ! uflo = (lx < 0x0001000000000000ul);
138 ! if (++lx >
[all...]
/opensolaris-onvv-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dm_cc.c669 * Erase region from (y,x) to (ly, lx) inclusive. The
677 __m_cc_erase(w, y, x, ly, lx)
679 int y, x, ly, lx;
689 if (w->_maxx <= lx)
690 lx = w->_maxx - 1;
696 lx = __m_cc_next(w, ly, lx) - 1;
703 if (y < ly && (lx + 1) % width != 0)
705 if ((lx - x + 1) % width != 0)
729 for (cp = w->_line[y], i = 0; x <= lx;
[all...]
/opensolaris-onvv-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dm_cc.c769 __m_cc_erase_in_line(WINDOW *w, int y, int x, int lx, int bgWidth) argument
777 for (cp = w->_line[y], i = 0; x <= lx; ++x, ++i) {
793 int lx, int bgWidth, int parentBGWidth)
806 wlx = lx = __m_cc_next(parent, parentY, dx + lx) - 1;
809 for (cp = parent->_line[parentY]; x <= lx; ) {
812 for (i = 0; x <= lx && i <= parentBGWidth; x++, i++) {
853 * Erase region from (y,x) to (ly, lx) inclusive. The
861 __m_cc_erase(WINDOW *w, int y, int x, int ly, int lx) argument
896 __m_cc_erase_in_line_sub(w, y, x, lx, bgWidt
792 __m_cc_erase_in_line_sub(WINDOW *w, int y, int x, int lx, int bgWidth, int parentBGWidth) argument
[all...]
/opensolaris-onvv-gate/usr/src/cmd/msgfmt/
H A DMakefile37 LXOBJS= xgettext.lx.o
99 $(POFILE) $(POFILES) gnu_po.c y.tab.h xgettext.lx.c
/opensolaris-onvv-gate/usr/src/lib/libast/common/sfio/
H A Dsfcvt.c121 static char lx[] = "0123456789abcdef"; local
198 ep = (format & SFFMT_UPPER) ? ux : lx;
372 ep = (format & SFFMT_UPPER) ? ux : lx;
/opensolaris-onvv-gate/usr/src/uts/common/zmod/
H A Dtrees.c1079 unsigned lx = 0; /* running index in l_buf */ local
1084 dist = s->d_buf[lx];
1085 lc = s->l_buf[lx++];
1111 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
1114 } while (lx < s->last_lit);
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DDebug.pm15 %s (0x%lx)
/opensolaris-onvv-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DpmAccess.java410 } catch (pmLoginFailedException lx) {
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Math/
H A DBigFloat.pm460 my $lx = $lxm + $xes * $MBI->_num($x->{_e});
462 my $l = $lx - $ly; $l = -$l if $x->{sign} eq '-';
524 my $lx = $lxm + $xes * $MBI->_num($x->{_e});
526 my $l = $lx - $ly;
1296 my $lx = $MBI->_len($x->{_m}); my $ly = $MBI->_len($y->{_m});
1297 $scale = $lx if $lx > $scale;
1299 my $diff = $ly - $lx;
1300 $scale += $diff if $diff > 0; # if lx << ly, but not if ly << lx!
[all...]
H A DBigInt.pm3393 So for lx = 3, ly = 9, scale = 10, scale will actually be 16 (10+9-3).
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/utils/
H A Dperlcc.PL279 $cfile =~ s/\.(?:p(?:lx|l|h)|m)\z//i;
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c2458 unsigned lx = 0; /* running index in l_buf */ local
2463 dist = s->d_buf[lx];
2464 lc = s->l_buf[lx++];
2490 Assert(s->pending < s->lit_bufsize + 2*lx, "pendingBuf overflow");
2492 } while (lx < s->last_lit);
/opensolaris-onvv-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c3366 unsigned lx = 0; /* running index in l_buf */ local
3371 dist = s->d_buf[lx];
3372 lc = s->l_buf[lx++];
3407 Assert(s->pending < s->lit_bufsize + 2*lx,
3410 } while (lx < s->last_lit);
/opensolaris-onvv-gate/usr/src/uts/i86pc/os/
H A Dfakebop.c326 bop_printf(NULL, "do_bsys_free(virt=0x%p, size=0x%lx) ignored\n",
901 (void) snprintf(pnp, VBDPATHLEN, "%lx", addr);
1596 bop_printf(NULL, " %s+%lx", ksym, off);
1598 bop_printf(NULL, " 0x%lx", pc);
1613 bop_printf(NULL, "0x%lx", frame->arg[a]);
1653 bop_printf(NULL, "error code 0x%lx\n",
1656 bop_printf(NULL, "instruction pointer 0x%lx\n", tf->inst_ptr);
1657 bop_printf(NULL, "code segment 0x%lx\n", tf->code_seg & 0xffff);
1658 bop_printf(NULL, "flags register 0x%lx\n", tf->flags_reg);
1660 bop_printf(NULL, "return %%rsp 0x%lx\
[all...]

Completed in 517 milliseconds