Home
last modified time | relevance | path

Searched refs:SET_HIGH_WORD (Results 1 – 22 of 22) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
De_hypot.c82 SET_HIGH_WORD(a,ha); in __ieee754_hypot()
83 SET_HIGH_WORD(b,hb); in __ieee754_hypot()
91 SET_HIGH_WORD(t1,0x7fd00000); /* t1=2^1022 */ in __ieee754_hypot()
99 SET_HIGH_WORD(a,ha); in __ieee754_hypot()
100 SET_HIGH_WORD(b,hb); in __ieee754_hypot()
107 SET_HIGH_WORD(t1,ha); in __ieee754_hypot()
113 SET_HIGH_WORD(y1,hb); in __ieee754_hypot()
116 SET_HIGH_WORD(t1,ha+0x00100000); in __ieee754_hypot()
124 SET_HIGH_WORD(t1,high+(k<<20)); in __ieee754_hypot()
De_hypotl.c34 #undef SET_HIGH_WORD
35 #define SET_HIGH_WORD(v, i) SET_LDBL_EXPSIGN(v, i) macro
77 SET_HIGH_WORD(a,ha); in hypotl()
78 SET_HIGH_WORD(b,hb); in hypotl()
86 SET_HIGH_WORD(t1,ESW(MAX_EXP-2)); /* t1=2^(MAX_EXP-2) */ in hypotl()
94 SET_HIGH_WORD(a,ha); in hypotl()
95 SET_HIGH_WORD(b,hb); in hypotl()
121 SET_HIGH_WORD(t1,high+DESW(k)); in hypotl()
Ds_scalbn.c53 {SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20)); return x;} in scalbn()
59 SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20)); in scalbn()
Ds_fabs.c29 SET_HIGH_WORD(x,high&0x7fffffff); in fabs()
Ds_copysign.c31 SET_HIGH_WORD(x,(hx&0x7fffffff)|(hy&0x80000000)); in copysign()
Ds_rint.c52 SET_HIGH_WORD(x,i0); in rint()
56 SET_HIGH_WORD(t,(i0&0x7fffffff)|(sx<<31)); in rint()
Ds_frexp.c50 SET_HIGH_WORD(x,hx); in frexp()
Ds_log1p.c149 SET_HIGH_WORD(u,hu|0x3ff00000); /* normalize u */ in log1p()
152 SET_HIGH_WORD(u,hu|0x3fe00000); /* normalize u/2 */ in log1p()
De_atanh.c57 SET_HIGH_WORD(x,ix); in __ieee754_atanh()
Ds_expm1.c207 SET_HIGH_WORD(t,0x3ff00000 - (0x200000>>k)); /* t=1-2^-k */ in expm1()
211 SET_HIGH_WORD(t,((0x3ff-k)<<20)); /* 2^-k */ in expm1()
Dk_exp.c60 SET_HIGH_WORD(exp_x, (hx & 0xfffff) | ((0x3ff + 1023) << 20)); in __frexp_exp()
De_remainder.c73 SET_HIGH_WORD(x,hx^sx); in __ieee754_remainder()
De_pow.c219 SET_HIGH_WORD(ax,ix); in __ieee754_pow()
229 SET_HIGH_WORD(t_h,((ix>>1)|0x20000000)+0x00080000+(k<<18)); in __ieee754_pow()
286 SET_HIGH_WORD(t,n&~(0x000fffff>>k)); in __ieee754_pow()
304 else SET_HIGH_WORD(z,j); in __ieee754_pow()
Ds_ctanh.c106 SET_HIGH_WORD(x, hx - 0x40000000); /* x = copysign(1, x) */ in ctanh()
Ds_cbrt.c71 SET_HIGH_WORD(t,0x43500000); /* set t= 2**54 */ in cbrt()
De_log2.c64 SET_HIGH_WORD(x,hx|(i^0x3ff00000)); /* normalize x or x/2 */ in __ieee754_log2()
De_log10.c64 SET_HIGH_WORD(x,hx|(i^0x3ff00000)); /* normalize x or x/2 */ in __ieee754_log10()
De_log.c109 SET_HIGH_WORD(x,hx|(i^0x3ff00000)); /* normalize x or x/2 */ in __ieee754_log()
Ds_remquo.c151 SET_HIGH_WORD(x,hx^sx); in remquo()
Dcatrig.c548 SET_HIGH_WORD(scale, 0x7ff00000 - ix); /* 2**(1-ilogb(x)) */ in real_part_reciprocal()
Dmath_private.h143 #define SET_HIGH_WORD(d,v) \ macro
/bionic/libc/upstream-freebsd/lib/libc/gen/
Dldexp.c72 #define SET_HIGH_WORD(d,v) \ macro
93 SET_HIGH_WORD(x,(hx&0x7fffffff)|(hy&0x80000000)); in _copysign()
114 {SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20)); return x;} in ldexp()
121 SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20)); in ldexp()