HomeSort by relevance Sort by last modified time
    Searched defs:expsign (Results 1 - 10 of 10) sorted by null

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_rintl.c 36 /* We also require the usual bias, min exp and expsign packing. */
58 uint32_t expsign; local
62 expsign = u.xbits.expsign;
63 ex = expsign & 0x7fff;
70 sign = expsign >> 15;
e_acosl.c 48 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 */
e_asinl.c 38 int16_t expsign, expt; local
40 expsign = u.xbits.expsign;
41 expt = expsign & 0x7fff;
76 if(expsign>0) return t; else return -t;
s_atanl.c 38 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;
s_cbrtl.c 42 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);
  /ndk/sources/android/support/src/stdio/amd64/
_fpmath.h 44 unsigned int expsign :16; member in struct:IEEEl2bits::__anon27868
  /ndk/sources/android/support/src/stdio/arm64/
_fpmath.h 52 unsigned int expsign :16; member in struct:IEEEl2bits::__anon27871
54 unsigned int expsign :16;
  /ndk/sources/android/support/src/stdio/i386/
_fpmath.h 40 unsigned int expsign :16; member in struct:IEEEl2bits::__anon27875
  /bionic/libm/
fpmath.h 76 unsigned int expsign :16; member in struct:IEEEl2bits::__anon1108
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
e_rem_pio2l.h 69 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 120 milliseconds