Searched refs:__LO (Results 1 - 25 of 37) sorted by relevance

12

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Ds_nextafter.c47 lx = __LO(x); /* low word of x */
49 ly = __LO(y); /* low word of y */
59 __LO(x) = 1;
85 __HI(y) = hx; __LO(y) = lx;
89 __HI(x) = hx; __LO(x) = lx;
H A Ds_isnan.c43 lx = __LO(x);
H A Ds_logb.c44 lx = __LO(x); /* low x */
H A Ds_modf.c55 i1 = __LO(x); /* low x */
67 __LO(x) = 0; /* return +-0 */
78 __LO(x) = 0; /* return +-0 */
85 __LO(x) = 0; /* return +-0 */
H A Ds_ilogb.c46 lx = __LO(x);
H A Dk_tan.c99 if (((ix | __LO(x)) | (iy + 1)) == 0)
108 __LO(z) = 0;
111 __LO(t) = 0;
146 __LO(z) = 0;
149 __LO(t) = 0;
H A De_acosh.c68 } else if(((hx-0x3ff00000)|__LO(x))==0) {
H A Ds_frexp.c56 lx = __LO(x);
H A De_remainder.c57 lx = __LO(x); /* low word of x */
59 lp = __LO(p); /* low word of p */
H A Ds_cbrt.c67 if((hx|__LO(x))==0)
86 __LO(t)=0; __HI(t)+=0x00000001;
H A Ds_ceil.c54 i1 = __LO(x);
89 __LO(x) = i1;
H A Ds_floor.c54 i1 = __LO(x);
90 __LO(x) = i1;
H A Ds_rint.c61 i1 = __LO(x);
94 __LO(x) = i1;
H A De_pow.c125 hx = __HI(x); lx = __LO(x);
126 hy = __HI(y); ly = __LO(y);
217 __LO(t1) = 0;
239 __LO(s_h) = 0;
251 __LO(t_h) = 0;
258 __LO(p_h) = 0;
265 __LO(t1) = 0;
271 __LO(y1) = 0;
276 i = __LO(z);
306 __LO(
[all...]
H A De_hypot.c81 if(((ha&0xfffff)|__LO(a))==0) w = a;
82 if(((hb^0x7ff00000)|__LO(b))==0) w = b;
92 if((hb|(__LO(b)))==0) return a;
H A De_atanh.c66 lx = __LO(x); /* low word */
H A De_fmod.c52 lx = __LO(x); /* low word of x */
54 ly = __LO(y); /* low word of y */
137 __LO(x) = lx;
149 __LO(x) = lx;
H A De_log10.c86 lx = __LO(x); /* low word of x */
H A De_atan2.c80 lx = __LO(x);
82 ly = __LO(y);
H A De_acos.c85 if(((ix-0x3ff00000)|__LO(x))==0) { /* |x|==1 */
110 __LO(df) = 0;
H A De_asin.c94 if(((ix-0x3ff00000)|__LO(x))==0)
119 __LO(w) = 0;
H A De_sqrt.c117 ix1 = __LO(x); /* low word of x */
203 __LO(z) = ix1;
H A Dk_cos.c99 __LO(qx) = 0;
H A Ds_scalbn.c55 lx = __LO(x);
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntimeTrans.cpp53 # define __LO(x) *(int*)&x macro
56 # define __LO(x) *(1+(int*)&x) macro
91 lx = __LO(x);
185 lx = __LO(x); /* low word of x */
279 lx = __LO(x); /* low word of x */
396 if(((hx&0xfffff)|__LO(x))!=0)
517 hx = __HI(x); lx = __LO(x);
518 hy = __HI(y); ly = __LO(y);
618 __LO(t1) = 0;
640 __LO(s_
[all...]

Completed in 59 milliseconds

12