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

123

/external/fdlibm/
H A Ds_isnan.c28 int hx,lx; local
30 lx = __LO(x);
31 hx |= (unsigned)(lx|(-lx))>>31;
H A Ds_nextafter.c31 unsigned lx,ly; local
34 lx = __LO(x); /* low word of x */
40 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */
44 if((ix|lx)==0) { /* x == 0 */
51 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */
52 if(lx==0) hx -= 1;
53 lx -= 1;
55 lx += 1;
56 if(lx==0) hx += 1;
59 if(hy>=0||hx>hy||((hx==hy)&&(lx>l
[all...]
H A Ds_ilogb.c29 int hx,lx,ix; local
33 lx = __LO(x);
34 if((hx|lx)==0)
38 for (ix = -1043; lx>0; lx<<=1) ix -=1;
H A De_fmod.c36 unsigned lx,ly,lz; local
39 lx = __LO(x); /* low word of x */
51 if((hx<hy)||(lx<ly)) return x; /* |x|<|y| return x */
52 if(lx==ly)
59 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1;
74 /* set up {hx,lx}, {hy,ly} and align y to x */
80 hx = (hx<<n)|(lx>>(32-n));
81 lx <<= n;
83 hx = lx<<(n-32);
84 lx
[all...]
H A Ds_logb.c29 int lx,ix; local
31 lx = __LO(x); /* low x */
32 if((ix|lx)==0) return -1.0/ieee_fabs(x);
H A Ds_frexp.c40 int hx, ix, lx; local
43 lx = __LO(x);
45 if(ix>=0x7ff00000||((ix|lx)==0)) return x; /* 0,inf,nan */
H A De_atanh.c52 unsigned lx; local
54 lx = __LO(x); /* low word */
56 if ((ix|((lx|(-lx))>>31))>0x3ff00000) /* |x|>1 */
H A De_log10.c70 unsigned lx; local
73 lx = __LO(x); /* low word of x */
77 if (((hx&0x7fffffff)|lx)==0)
H A De_atan2.c65 unsigned lx,ly; local
68 lx = __LO(x);
71 if(((ix|((lx|-lx)>>31))>0x7ff00000)||
74 if((hx-0x3ff00000|lx)==0) return ieee_atan(y); /* x=1.0 */
87 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
H A De_cosh.c52 unsigned lx; local
79 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
81 (ix==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d)) {
H A De_remainder.c40 unsigned sx,lx,lp; local
44 lx = __LO(x); /* low word of x */
60 if (((hx-hp)|(lx-lp))==0) return zero*x;
H A De_sinh.c49 unsigned lx; local
73 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
74 if (ix<0x408633CE || (ix==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d)) {
H A Ds_scalbn.c40 int k,hx,lx; local
42 lx = __LO(x);
45 if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
H A De_jn.c60 int i,hx,ix,lx, sgn; local
69 lx = __LO(x);
71 if((ix|((unsigned)(lx|-lx))>>31)>0x7ff00000) return x+x;
81 if((ix|lx)==0||ix>=0x7ff00000) /* if x is 0 or inf */
221 int i,hx,ix,lx; local
227 lx = __LO(x);
229 if((ix|((unsigned)(lx|-lx))>>31)>0x7ff00000) return x+x;
230 if((ix|lx)
[all...]
H A De_log.c94 unsigned lx; local
97 lx = __LO(x); /* low word of x */
101 if (((hx&0x7fffffff)|lx)==0)
H A De_lgamma_r.c214 int i,hx,lx,ix; local
217 lx = __LO(x);
223 if((ix|lx)==0) return one/zero;
241 if((((ix-0x3ff00000)|lx)==0)||(((ix-0x40000000)|lx)==0)) r = 0;
H A De_pow.c111 unsigned lx,ly; local
114 hx = __HI(x); lx = __LO(x);
122 if(ix > 0x7ff00000 || ((ix==0x7ff00000)&&(lx!=0)) ||
149 if(((ix-0x3ff00000)|lx)==0)
168 if(lx==0) {
/external/pixman/pixman/
H A Dpixman-edge-imp.h43 pixman_fixed_t lx; local
48 lx = l->x;
58 lx += X_FRAC_FIRST(1) - pixman_fixed_e;
62 if (lx < 0)
63 lx = 0;
76 if (rx > lx)
80 lxi = pixman_fixed_to_int (lx);
136 lxs = RENDER_SAMPLES_X (lx, N_BITS);
H A Dpixman-gradient-walker.c63 float lx, rx; local
140 lx = left_x * (1.0f/65536.0f);
143 if (FLOAT_IS_ZERO (rx - lx) || left_x == INT32_MIN || right_x == INT32_MAX)
153 float w_rec = 1.0f / (rx - lx);
155 walker->a_b = (la * rx - ra * lx) * w_rec;
156 walker->r_b = (lr * rx - rr * lx) * w_rec * (1.0f/255.0f);
157 walker->g_b = (lg * rx - rg * lx) * w_rec * (1.0f/255.0f);
158 walker->b_b = (lb * rx - rb * lx) * w_rec * (1.0f/255.0f);
H A Dpixman-edge.c175 pixman_fixed_t lx, rx; local
179 lx = l->x;
180 if (lx < 0)
181 lx = 0;
195 if (rx > lx)
200 lxi = pixman_fixed_to_int (lx);
204 lxs = RENDER_SAMPLES_X (lx, 8);
/external/clang/test/SemaCXX/
H A Dclass.cpp80 static int lx; local
82 int m() { return lx; }
85 int m() { return lx; }
/external/qemu/distrib/sdl-1.2.15/src/video/
H A De_log.h95 u_int32_t lx; local
97 EXTRACT_WORDS(hx,lx,x);
101 if (((hx&0x7fffffff)|lx)==0)
H A De_sqrt.h111 int32_t k,hx,lx; local
112 EXTRACT_WORDS(hx,lx,x);
115 if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
H A Dtr_dump.c577 trace_dump_writef("<ptr>0x%08lx</ptr>", (unsigned long)(uintptr_t)value);
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_dump.c577 trace_dump_writef("<ptr>0x%08lx</ptr>", (unsigned long)(uintptr_t)value);

Completed in 323 milliseconds

123