Searched defs:lx (Results 1 - 25 of 58) sorted by relevance

123

/illumos-gate/usr/src/lib/libm/common/C/
H A Dceil.c48 int hx, lx, ix; local
51 lx = ((int *)&x)[LOWORD];
59 if ((ix | lx) == 0)
H A Dfloor.c48 int hx, lx, ix; local
51 lx = ((int *)&x)[LOWORD];
59 if ((ix | lx) == 0)
H A Dnextafter.c39 unsigned lx; local
43 lx = ((int *)&x)[LOWORD];
45 k = (hx & ~0x80000000) | lx;
57 ((int *)&ans)[LOWORD] = lx - 1;
58 k = (lx == 0)? hx - 1 : hx;
61 ((int *)&ans)[LOWORD] = lx + 1;
62 k = (lx == 0xffffffff)? hx + 1 : hx;
67 ((int *)&ans)[LOWORD] = lx - 1;
68 k = (lx == 0)? hx - 1 : hx;
71 ((int *)&ans)[LOWORD] = lx
[all...]
H A Dsincospi.c91 unsigned h, lx = ((unsigned *) &x)[LOWORD]; local
109 if ((lx & 1) == 0) {
119 if ((lx & 1) == 0) {
127 if ((lx & 2) != 0) {
148 n = lx >> k;
152 k = h == lx;
H A D__rem_pio2.c67 int e0, i, j, nx, n, ix, hx, lx; local
147 lx = ((int *)&x)[LOWORD];
148 i = (lx & 0x1f) << 19;
150 j = (lx >> 5) & 0xffffff;
153 ((unsigned)lx >> 29));
H A Dhypot.c82 unsigned lx, ly; local
85 lx = ((int *) &x)[LOWORD];
97 i = lx;
98 lx = ly;
112 if (((ix - 0x7ff00000) | lx) == 0)
136 if ((ix | lx) == 0)
173 if (((lx | ly) << 5) == 0) {
/illumos-gate/usr/src/lib/libm/common/complex/
H A Dccosh.c84 int hx, ix, lx, hy, iy, ly, n; local
90 lx = LO_WORD(x);
124 if ((ix | lx) == 0) { /* x = 0, return (C,0) */
H A Dcproj.c51 int ix, iy, hx, hy, lx, ly; local
56 lx = LO_WORD(x);
64 } else if (ISINF(ix, lx)) {
H A Dcsinh.c84 int hx, ix, lx, hy, iy, ly, n; local
90 lx = LO_WORD(x);
124 if ((ix | lx) == 0) { /* x = 0, return (0,S) */
H A Dcexp.c70 int n, ix, iy, hx, hy, lx, ly; local
75 lx = LO_WORD(x);
83 } else if (ISINF(ix, lx)) { /* x is +-inf */
H A Dclog.c75 unsigned lx, ly; local
80 lx = LO_WORD(x);
88 if (ix < iy || (ix == iy && lx < ly)) {
95 n = lx, lx = ly;
100 if (ISINF(ix, lx))
107 D_RE(ans) = ((ix | lx) == 0)? -one / ax : log(ax);
111 if (((ix - 0x3ff00000) | lx) == 0)
H A Dcabs.c55 unsigned lx, ly; local
61 lx = ((int *)&x)[LOWORD];
72 i = lx;
73 lx = ly;
87 if (((ix - 0x7ff00000) | lx) == 0)
107 if ((ix | lx) == 0)
149 if (((lx | ly) << 5) == 0) {
H A Dcatan.c96 unsigned lx, ly; local
103 lx = LO_WORD(x);
111 if (ISINF(ix, lx)) {
130 } else if ((ix | lx) == 0) {
H A Dcsqrt.c123 int n, ix, iy, hx, hy, lx, ly; local
128 lx = LO_WORD(x);
139 else if (ISINF(ix, lx)) {
H A Dctanh.c100 int hx, ix, lx, hy, iy, ly; local
106 lx = LO_WORD(x);
120 else if (((ix - 0x7ff00000) | lx) == 0) { /* x is inf */
141 if (((ix - 0x7ff00000) | lx) != 0)
H A Dk_cexp.c122 unsigned hx, lx; local
125 lx = LO_WORD(x); /* low word of x */
133 if (((hx & 0xfffff) | lx) != 0)
/illumos-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...]
/illumos-gate/usr/src/lib/libm/common/LD/
H A Dsincospil.c106 unsigned lx; local
109 lx = LDBL_LEAST_SIGNIF_U(x);
121 if ((lx & 1) == 0) {
131 if ((lx & 1) == 0) {
139 if ((lx & 2) != 0) {
H A Dsinpil.c105 unsigned lx; local
108 lx = LDBL_LEAST_SIGNIF_U(x);
117 y = (lx & 1) == 0 ? zero: -zero;
119 y = (lx & 1) == 0 ? zero : one;
120 if ((lx & 2) != 0)
/illumos-gate/usr/src/lib/libm/common/Q/
H A Dsincospil.c104 unsigned lx; local
107 lx = LDBL_LEAST_SIGNIF_U(x);
117 if ((lx & 1) == 0) {
125 if ((lx & 1) == 0) {
132 if ((lx & 2) != 0) {
H A Dsinpil.c104 unsigned lx; local
107 lx = LDBL_LEAST_SIGNIF_U(x);
116 y = (lx & 1) == 0 ? zero: -zero;
118 y = (lx & 1) == 0 ? zero : one;
119 if ((lx & 2) != 0)
/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dnexttoward.c83 long double lx; local
95 lx = xx.d = x;
99 rel = _Q_cmp(&lx, &y);
169 long double lx; local
172 lx = xx.d = x;
176 if (isunordered(lx, y))
177 return ((double) (lx + y));
179 if (lx == y)
182 if (lx < y) {
H A Dnexttowardf.c72 long double lx; local
84 lx = xx.f = x;
88 rel = _Q_cmp(&lx, &y);
139 long double lx; local
142 lx = xx.f = x;
146 if (isunordered(lx, y))
147 return ((float) (lx + y));
149 if (lx == y)
152 if (lx < y) {
H A Dremquo.c62 unsigned lx, ly, lz; local
65 lx = __LO(x); /* low word of x */
79 if (hx < hy || lx < ly)
81 if (lx == ly) {
91 for (ix = -1043, i = lx; i > 0; i <<= 1)
112 /* set up {hx,lx}, {hy,ly} and align y to x */
118 hx = (hx << n) | (lx >> (32 - n));
119 lx <<= n;
121 hx = lx << (n - 32);
122 lx
[all...]
/illumos-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...]

Completed in 58 milliseconds

123