Searched defs:expsign (Results 1 - 7 of 7) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_rintl.c37 /* We also require the usual bias, min exp and expsign packing. */
59 uint32_t expsign; local
63 expsign = u.xbits.expsign;
64 ex = expsign & 0x7fff;
71 sign = expsign >> 15;
H A De_asinl.c38 int16_t expsign, expt; local
40 expsign = u.xbits.expsign;
41 expt = expsign & 0x7fff;
76 if(expsign>0) return t; else return -t;
H A Ds_atanl.c38 int16_t expsign, expt; local
42 expsign = u.xbits.expsign;
43 expt = expsign & 0x7fff;
48 if(expsign>0) return atanhi[3]+atanlo[3];
83 return (expsign<0)? -z:z;
H A De_acosl.c48 int16_t expsign, expt; local
50 expsign = u.xbits.expsign;
51 expt = expsign & 0x7fff;
54 if (expsign>0) return 0.0; /* acos(1) = 0 */
66 } else if (expsign<0) { /* x < -0.5 */
H A Ds_cbrtl.c42 uint16_t expsign; local
46 expsign = u.xbits.expsign;
47 k = expsign & 0x7fff;
67 u.xbits.expsign = BIAS;
83 v.xbits.expsign = (expsign & 0x8000) | (BIAS + k / 3);
/bionic/libm/
H A Dfpmath.h76 unsigned int expsign :16; member in struct:IEEEl2bits::__anon931
/bionic/libm/upstream-freebsd/lib/msun/ld128/
H A De_rem_pio2l.h69 int16_t expsign; local
72 expsign = u.xbits.expsign;
73 ex = expsign & 0x7fff;
93 ex1 = u2.xbits.expsign & 0x7fff;
102 ex1 = u2.xbits.expsign & 0x7fff;
125 u1.xbits.expsign = ex - e0;
138 if(expsign<0) {y[0] = -r; y[1] = -w; return -n;}

Completed in 1423 milliseconds