/bionic/libm/upstream-freebsd/lib/msun/src/ |
H A D | s_finite.c | 26 int32_t hx; local 27 GET_HIGH_WORD(hx,x); 28 return (int)((u_int32_t)((hx&0x7fffffff)-0x7ff00000)>>31);
|
H A D | s_ilogbf.c | 26 int32_t hx,ix; local 28 GET_FLOAT_WORD(hx,x); 29 hx &= 0x7fffffff; 30 if(hx<0x00800000) { 31 if(hx==0) 34 for (ix = -126,hx<<=8; hx>0; hx<<=1) ix -=1; 37 else if (hx<0x7f800000) return (hx>>2 [all...] |
H A D | s_round.c | 39 uint32_t hx; local 41 GET_HIGH_WORD(hx, x); 42 if ((hx & 0x7fffffff) == 0x7ff00000) 45 if (!(hx & 0x80000000)) {
|
H A D | s_roundf.c | 37 uint32_t hx; local 39 GET_FLOAT_WORD(hx, x); 40 if ((hx & 0x7fffffff) == 0x7f800000) 43 if (!(hx & 0x80000000)) {
|
H A D | s_roundl.c | 43 uint16_t hx; local 45 GET_LDBL_EXPSIGN(hx, x); 46 if ((hx & 0x7fff) == 0x7fff) 51 if (!(hx & 0x8000)) {
|
H A D | s_copysign.c | 28 u_int32_t hx,hy; local 29 GET_HIGH_WORD(hx,x); 31 SET_HIGH_WORD(x,(hx&0x7fffffff)|(hy&0x80000000));
|
H A D | s_ilogb.c | 30 int32_t hx,lx,ix; local 32 EXTRACT_WORDS(hx,lx,x); 33 hx &= 0x7fffffff; 34 if(hx<0x00100000) { 35 if((hx|lx)==0) 38 if(hx==0) { 41 for (ix = -1022,hx<<=11; hx>0; hx<<=1) ix -=1; 45 else if (hx< [all...] |
H A D | e_acosh.c | 45 int32_t hx; local 47 EXTRACT_WORDS(hx,lx,x); 48 if(hx<0x3ff00000) { /* x < 1 */ 50 } else if(hx >=0x41b00000) { /* x > 2**28 */ 51 if(hx >=0x7ff00000) { /* x is inf of NaN */ 55 } else if(((hx-0x3ff00000)|lx)==0) { 57 } else if (hx > 0x40000000) { /* 2**28 > x > 2 */
|
H A D | e_acoshf.c | 30 int32_t hx; local 31 GET_FLOAT_WORD(hx,x); 32 if(hx<0x3f800000) { /* x < 1 */ 34 } else if(hx >=0x4d800000) { /* x > 2**28 */ 35 if(hx >=0x7f800000) { /* x is inf of NaN */ 39 } else if (hx==0x3f800000) { 41 } else if (hx > 0x40000000) { /* 2**28 > x > 2 */
|
H A D | s_frexp.c | 37 int32_t hx, ix, lx; local 38 EXTRACT_WORDS(hx,lx,x); 39 ix = 0x7fffffff&hx; 44 GET_HIGH_WORD(hx,x); 45 ix = hx&0x7fffffff; 49 hx = (hx&0x800fffff)|0x3fe00000; 50 SET_HIGH_WORD(x,hx);
|
H A D | s_frexpf.c | 28 int32_t hx,ix; local 29 GET_FLOAT_WORD(hx,x); 30 ix = 0x7fffffff&hx; 35 GET_FLOAT_WORD(hx,x); 36 ix = hx&0x7fffffff; 40 hx = (hx&0x807fffff)|0x3f000000; 41 SET_FLOAT_WORD(x,hx);
|
H A D | e_acoshl.c | 69 int16_t hx; local 72 GET_LDBL_EXPSIGN(hx, x); 73 if (hx < 0x3fff) { /* x < 1, or misnormal */ 75 } else if (hx >= BIAS + EXP_LARGE) { /* x >= LARGE */ 76 if (hx >= 0x7fff) { /* x is inf, NaN or misnormal */ 80 } else if (hx == 0x3fff && x == 1) { 82 } else if (hx >= 0x4000) { /* LARGE > x >= 2, or misnormal */
|
H A D | e_atanh.c | 48 int32_t hx,ix; local 50 EXTRACT_WORDS(hx,lx,x); 51 ix = hx&0x7fffffff; 63 if(hx>=0) return t; else return -t;
|
H A D | e_atanhf.c | 30 int32_t hx,ix; local 31 GET_FLOAT_WORD(hx,x); 32 ix = hx&0x7fffffff; 44 if(hx>=0) return t; else return -t;
|
H A D | e_atanhl.c | 58 uint16_t hx, ix; local 61 GET_LDBL_EXPSIGN(hx, x); 62 ix = hx & 0x7fff; 73 RETURNI((hx & 0x8000) == 0 ? t : -t);
|
H A D | e_remainder.c | 37 int32_t hx,hp; local 41 EXTRACT_WORDS(hx,lx,x); 43 sx = hx&0x80000000; 45 hx &= 0x7fffffff; 49 if((hx>=0x7ff00000)|| /* x not finite */ 56 if (((hx-hp)|(lx-lp))==0) return zero*x; 71 GET_HIGH_WORD(hx,x); 72 if ((hx&0x7fffffff)==0) hx = 0; 73 SET_HIGH_WORD(x,hx [all...] |
H A D | e_remainderf.c | 28 int32_t hx,hp; local 32 GET_FLOAT_WORD(hx,x); 34 sx = hx&0x80000000; 36 hx &= 0x7fffffff; 40 if((hx>=0x7f800000)|| /* x not finite */ 46 if ((hx-hp)==0) return zero*x; 61 GET_FLOAT_WORD(hx,x); 62 if ((hx&0x7fffffff)==0) hx = 0; 63 SET_FLOAT_WORD(x,hx [all...] |
H A D | s_asinh.c | 41 int32_t hx,ix; local 42 GET_HIGH_WORD(hx,x); 43 ix = hx&0x7fffffff; 57 if(hx>0) return w; else return -w;
|
H A D | s_asinhf.c | 31 int32_t hx,ix; local 32 GET_FLOAT_WORD(hx,x); 33 ix = hx&0x7fffffff; 47 if(hx>0) return w; else return -w;
|
H A D | s_cbrtf.c | 35 int32_t hx; local 39 GET_FLOAT_WORD(hx,x); 40 sign=hx&0x80000000; /* sign= sign(x) */ 41 hx ^=sign; 42 if(hx>=0x7f800000) return(x+x); /* cbrt(NaN,INF) is itself */ 45 if(hx<0x00800000) { /* zero or subnormal? */ 46 if(hx==0) 53 SET_FLOAT_WORD(t,sign|(hx/3+B1));
|
H A D | s_cexpf.c | 43 uint32_t hx, hy; local 54 GET_FLOAT_WORD(hx, x); 56 if ((hx & 0x7fffffff) == 0) 60 if ((hx & 0x7fffffff) != 0x7f800000) { 63 } else if (hx & 0x80000000) { 72 if (hx >= exp_ovfl && hx <= cexp_ovfl) {
|
H A D | s_nextafter.c | 32 int32_t hx,hy,ix,iy; local 35 EXTRACT_WORDS(hx,lx,x); 37 ix = hx&0x7fffffff; /* |x| */ 49 if(hx>=0) { /* x > 0 */ 50 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */ 51 if(lx==0) hx -= 1; 55 if(lx==0) hx += 1; 58 if(hy>=0||hx>hy||((hx [all...] |
H A D | s_nextafterf.c | 26 int32_t hx,hy,ix,iy; local 28 GET_FLOAT_WORD(hx,x); 30 ix = hx&0x7fffffff; /* |x| */ 42 if(hx>=0) { /* x > 0 */ 43 if(hx>hy) { /* x > y, x -= ulp */ 44 hx -= 1; 46 hx += 1; 49 if(hy>=0||hx>hy){ /* x < y, x -= ulp */ 50 hx -= 1; 52 hx [all...] |
H A D | s_nexttoward.c | 37 int32_t hx,ix; local 40 EXTRACT_WORDS(hx,lx,x); 41 ix = hx&0x7fffffff; /* |x| */ 54 if(hx>0.0 ^ x < y) { /* x -= ulp */ 55 if(lx==0) hx -= 1; 59 if(lx==0) hx += 1; 61 ix = hx&0x7ff00000; 66 INSERT_WORDS(x,hx,lx); 70 INSERT_WORDS(x,hx,lx);
|
H A D | s_nexttowardf.c | 28 int32_t hx,ix; local 30 GET_FLOAT_WORD(hx,x); 31 ix = hx&0x7fffffff; /* |x| */ 44 if(hx>=0 ^ x < y) /* x -= ulp */ 45 hx -= 1; 47 hx += 1; 48 ix = hx&0x7f800000; 53 SET_FLOAT_WORD(x,hx); 57 SET_FLOAT_WORD(x,hx);
|