HomeSort by relevance Sort by last modified time
    Searched refs:__LO (Results 1 - 25 of 35) sorted by null

1 2

  /external/fdlibm/
s_nextafter.c 34 lx = __LO(x); /* low word of x */
36 ly = __LO(y); /* low word of y */
46 __LO(x) = 1;
72 __HI(y) = hx; __LO(y) = lx;
76 __HI(x) = hx; __LO(x) = lx;
s_isnan.c 30 lx = __LO(x);
s_logb.c 31 lx = __LO(x); /* low x */
s_modf.c 42 i1 = __LO(x); /* low x */
54 __LO(x) = 0; /* return +-0 */
65 __LO(x) = 0; /* return +-0 */
72 __LO(x) = 0; /* return +-0 */
s_ilogb.c 33 lx = __LO(x);
k_tan.c 82 if (((ix | __LO(x)) | (iy + 1)) == 0)
91 __LO(z) = 0;
94 __LO(t) = 0;
141 __LO(z) = 0;
144 __LO(t) = 0;
e_acosh.c 56 } else if(((hx-0x3ff00000)|__LO(x))==0) {
s_frexp.c 43 lx = __LO(x);
e_remainder.c 44 lx = __LO(x); /* low word of x */
46 lp = __LO(p); /* low word of p */
s_cbrt.c 55 if((hx|__LO(x))==0)
74 __LO(t)=0; __HI(t)+=0x00000001;
s_ceil.c 41 i1 = __LO(x);
76 __LO(x) = i1;
s_floor.c 41 i1 = __LO(x);
77 __LO(x) = i1;
s_rint.c 48 i1 = __LO(x);
81 __LO(x) = i1;
e_pow.c 114 hx = __HI(x); lx = __LO(x);
115 hy = __HI(y); ly = __LO(y);
206 __LO(t1) = 0;
228 __LO(s_h) = 0;
240 __LO(t_h) = 0;
247 __LO(p_h) = 0;
254 __LO(t1) = 0;
260 __LO(y1) = 0;
265 i = __LO(z);
295 __LO(t) = 0
    [all...]
e_hypot.c 68 if(((ha&0xfffff)|__LO(a))==0) w = a;
69 if(((hb^0x7ff00000)|__LO(b))==0) w = b;
79 if((hb|(__LO(b)))==0) return a;
e_atanh.c 54 lx = __LO(x); /* low word */
e_fmod.c 39 lx = __LO(x); /* low word of x */
41 ly = __LO(y); /* low word of y */
124 __LO(x) = lx;
136 __LO(x) = lx;
e_log10.c 73 lx = __LO(x); /* low word of x */
e_atan2.c 68 lx = __LO(x);
70 ly = __LO(y);
e_acos.c 72 if(((ix-0x3ff00000)|__LO(x))==0) { /* |x|==1 */
97 __LO(df) = 0;
e_asin.c 81 if(((ix-0x3ff00000)|__LO(x))==0)
106 __LO(w) = 0;
e_sqrt.c 104 ix1 = __LO(x); /* low word of x */
190 __LO(z) = ix1;
k_cos.c 86 __LO(qx) = 0;
s_scalbn.c 42 lx = __LO(x);
fdlibm.h 29 #define __LO(x) *(int*)&x
34 #define __LO(x) *(1+(int*)&x)

Completed in 128 milliseconds

1 2