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

123

/netbsd-6-1-5-RELEASE/lib/libm/src/
H A Ds_isnan.c29 int32_t hx,lx; local
30 EXTRACT_WORDS(hx,lx,x);
32 hx |= (u_int32_t)(lx|(-lx))>>31;
H A Ds_nextafter.c32 u_int32_t lx,ly; local
34 EXTRACT_WORDS(hx,lx,x);
39 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */
43 if((ix|lx)==0) { /* x == 0 */
49 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */
50 if(lx==0) hx -= 1;
51 lx -= 1;
53 lx += 1;
54 if(lx==0) hx += 1;
57 if(hy>=0||hx>hy||((hx==hy)&&(lx>l
[all...]
H A De_fmod.c33 u_int32_t lx,ly,lz; local
35 EXTRACT_WORDS(hx,lx,x);
46 if((hx<hy)||(lx<ly)) return x; /* |x|<|y| return x */
47 if(lx==ly)
54 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1;
69 /* set up {hx,lx}, {hy,ly} and align y to x */
75 hx = (hx<<n)|(lx>>(32-n));
76 lx <<= n;
78 hx = lx<<(n-32);
79 lx
[all...]
H A Ds_isinf.c22 int32_t hx,lx; local
23 EXTRACT_WORDS(hx,lx,x);
26 hx |= lx;
H A Ds_logb.c34 int32_t lx,ix; local
35 EXTRACT_WORDS(ix,lx,x);
37 if((ix|lx)==0) return -1.0/fabs(x);
H A Ds_remquo.c34 u_int32_t lx,ly,lz,q,sxy; local
36 EXTRACT_WORDS(hx,lx,x);
48 if((hx<hy)||(lx<ly)) {
52 if(lx==ly) {
61 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1;
76 /* set up {hx,lx}, {hy,ly} and align y to x */
82 hx = (hx<<n)|(lx>>(32-n));
83 lx <<= n;
85 hx = lx<<(n-32);
86 lx
[all...]
H A Ds_ilogb.c34 int32_t hx,lx,ix; local
39 GET_LOW_WORD(lx,x);
40 if((hx|lx)==0)
44 for (ix = -1043; lx>0; lx<<=1) ix -=1;
H A Ds_nexttoward.c47 uint32_t lx; local
49 EXTRACT_WORDS(hx, lx, x);
53 if (((ix >= 0x7ff00000) && ((ix - 0x7ff00000) | lx) != 0) ||
71 if (lx == 0) hx -= 1;
72 lx -= 1;
74 lx += 1;
75 if (lx == 0) hx += 1;
82 INSERT_WORDS(y, hx, lx);
86 INSERT_WORDS(x, hx, lx);
H A Ds_frexp.c37 int32_t hx, ix, lx; local
38 EXTRACT_WORDS(hx,lx,x);
41 if(ix>=0x7ff00000||((ix|lx)==0)) return x; /* 0,inf,nan */
H A De_atanh.c48 u_int32_t lx; local
49 EXTRACT_WORDS(hx,lx,x);
51 if ((ix|((lx|(-lx))>>31))>0x3ff00000) /* |x|>1 */
H A De_acosh.c44 u_int32_t lx; local
45 EXTRACT_WORDS(hx,lx,x);
53 } else if(((hx-0x3ff00000)|lx)==0) {
H A De_log10.c67 u_int32_t lx; local
69 EXTRACT_WORDS(hx,lx,x);
73 if (((hx&0x7fffffff)|lx)==0)
H A De_atan2.c61 u_int32_t lx,ly; local
63 EXTRACT_WORDS(hx,lx,x);
67 if(((ix|((lx|-lx)>>31))>0x7ff00000)||
70 if(((hx-0x3ff00000)|lx)==0) return atan(y); /* x=1.0 */
83 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
H A De_cosh.c49 u_int32_t lx; local
76 GET_LOW_WORD(lx,x);
78 ((ix==0x408633ce)&&(lx<=(u_int32_t)0x8fb9f87d))) {
H A De_remainder.c37 u_int32_t sx,lx,lp; local
40 EXTRACT_WORDS(hx,lx,x);
55 if (((hx-hp)|(lx-lp))==0) return zero*x;
H A De_sinh.c46 u_int32_t lx; local
70 GET_LOW_WORD(lx,x);
71 if (ix<0x408633CE || ((ix==0x408633ce)&&(lx<=(u_int32_t)0x8fb9f87d))) {
H A Ds_scalbn.c47 int32_t k,hx,lx; local
48 EXTRACT_WORDS(hx,lx,x);
51 if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
H A De_jn.c58 int32_t i,hx,ix,lx, sgn; local
66 EXTRACT_WORDS(hx,lx,x);
69 if((ix|((u_int32_t)(lx|-lx))>>31)>0x7ff00000) return x+x;
79 if((ix|lx)==0||ix>=0x7ff00000) /* if x is 0 or inf */
220 int32_t i,hx,ix,lx; local
225 EXTRACT_WORDS(hx,lx,x);
228 if((ix|((u_int32_t)(lx|-lx))>>31)>0x7ff00000) return x+x;
229 if((ix|lx)
[all...]
H A De_log2.c40 u_int32_t lx; local
42 EXTRACT_WORDS(hx,lx,x);
46 if (((hx&0x7fffffff)|lx)==0)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20020201-1.c9 unsigned long lx = 28; variable
30 ly = lx / 6; if (ly != 4) abort ();
31 ly = lx % 6; if (ly != 4) abort ();
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20020201-1.c9 unsigned long lx = 28; variable
30 ly = lx / 6; if (ly != 4) abort ();
31 ly = lx % 6; if (ly != 4) abort ();
/netbsd-6-1-5-RELEASE/games/hack/
H A Ddef.mkroom.h67 schar lx,hx,ly,hy; /* usually xchar, but hx may be -1 */ member in struct:mkroom
H A Dhack.mklev.c74 #define somex() ((random()%(croom->hx-croom->lx+1))+croom->lx)
202 for (x = troom->lx; x <= troom->hx; x++)
232 int lx, ly, hx, hy, lowx, lowy, hix, hiy, dx, dy; local
257 lx = rsp->rlx;
264 dx = 2 + rn2((hx - lx - 8 > 20) ? 12 : 8);
271 if (hx - lx < dx + dx / 2 + 2 * xlim || hy - ly < dy + dy / 3 + 2 * ylim) {
284 lowx = lx + xlim + rn2(hx - lx - dx - 2 * xlim + 1);
304 int lx, l local
338 addrsx(int lx, int ly, int hx, int hy, boolean discarded) argument
[all...]
H A Dhack.search.c79 xchar lx, hx, ly, hy; local
83 for (lx = u.ux; (num = levl[lx - 1][u.uy].typ) && num != CORR; lx--);
89 for (zx = lx; zx <= hx; zx++) {
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgcc/config/libbid/
H A Dbid_sqrt_macros.h36 BINARY80 lx, ly, l64; local
42 lx = (BINARY80) A10.w[1] * l64 + (BINARY80) A10.w[0];
43 ly = SQRT80 (lx);
54 BINARY80 l64, lm64, l128, lxL, lx, ly, lS, lSH, lSL, lE, l3, l2, local
57 int *ple = (int *) &lx;
64 lx = l3 = (BINARY80) C256.w[3] * l64 * l128;
66 lx = FENCE (lx + l2);
68 lx = FENCE (lx
140 double lx, l64; local
234 double l64, l128, lx, l2, l1, l0; local
[all...]

Completed in 185 milliseconds

123