/bionic/libm/mips/ |
_fpmath.h | 34 unsigned int manh :20; member in struct:IEEEl2bits::__anon747 40 unsigned int manh :20; 55 (a)[1] = (uint32_t)(u).bits.manh; \
|
/bionic/libm/i386/ |
_fpmath.h | 33 unsigned int manh :32; member in struct:IEEEl2bits::__anon743 46 #define mask_nbit_l(u) ((u).bits.manh &= ~LDBL_NBIT) 53 (a)[1] = (uint32_t)(u).bits.manh; \
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_nextafterl.c | 43 ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl) != 0) || 45 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl) != 0)) 49 ux.bits.manh = 0; /* return +-minsubnormal */ 57 if ((ux.bits.manh&~LDBL_NBIT)==0) 59 ux.bits.manh = (ux.bits.manh - 1) | (ux.bits.manh & LDBL_NBIT); 65 ux.bits.manh = (ux.bits.manh + 1) | (ux.bits.manh & LDBL_NBIT) [all...] |
s_ilogbl.c | 31 if ((u.bits.manl | u.bits.manh) == 0) 34 if (u.bits.manh == 0) { 40 for (b = 0; !(u.bits.manh & m); m >>= 1) 49 else if (u.bits.manl != 0 || u.bits.manh != 0)
|
s_ceill.c | 35 uint64_t o = u.bits.manh; \ 36 u.bits.manh += (c); \ 37 if (u.bits.manh < o) \ 43 uint64_t o = u.bits.manh; \ 44 u.bits.manh += (c); \ 45 if (u.bits.manh < o) { \ 47 u.bits.manh |= 1llu << (LDBL_MANH_SIZE - 1); \ 64 (u.bits.manh | u.bits.manl) != 0) 68 if (((u.bits.manh & m) | u.bits.manl) == 0) 79 u.bits.manh &= ~m [all...] |
s_floorl.c | 35 uint64_t o = u.bits.manh; \ 36 u.bits.manh += (c); \ 37 if (u.bits.manh < o) \ 43 uint64_t o = u.bits.manh; \ 44 u.bits.manh += (c); \ 45 if (u.bits.manh < o) { \ 47 u.bits.manh |= 1llu << (LDBL_MANH_SIZE - 1); \ 64 (u.bits.manh | u.bits.manl) != 0) 68 if (((u.bits.manh & m) | u.bits.manl) == 0) 79 u.bits.manh &= ~m [all...] |
s_logbl.c | 32 if ((u.bits.manl | u.bits.manh) == 0) { /* x == 0 */ 37 if (u.bits.manh == 0) { 43 for (b = 0; !(u.bits.manh & m); m >>= 1)
|
s_fmax.c | 43 if (u[0].bits.exp == 2047 && (u[0].bits.manh | u[0].bits.manl) != 0) 45 if (u[1].bits.exp == 2047 && (u[1].bits.manh | u[1].bits.manl) != 0)
|
s_fmaxl.c | 45 if (u[0].bits.exp == 32767 && (u[0].bits.manh | u[0].bits.manl) != 0) 47 if (u[1].bits.exp == 32767 && (u[1].bits.manh | u[1].bits.manl) != 0)
|
s_fmin.c | 43 if (u[0].bits.exp == 2047 && (u[0].bits.manh | u[0].bits.manl) != 0) 45 if (u[1].bits.exp == 2047 && (u[1].bits.manh | u[1].bits.manl) != 0)
|
s_fminl.c | 45 if (u[0].bits.exp == 32767 && (u[0].bits.manh | u[0].bits.manl) != 0) 47 if (u[1].bits.exp == 32767 && (u[1].bits.manh | u[1].bits.manl) != 0)
|
s_isnan.c | 42 return (u.bits.exp == 2047 && (u.bits.manl != 0 || u.bits.manh != 0)); 62 return (u.bits.exp == 32767 && (u.bits.manl != 0 || u.bits.manh != 0));
|
e_fmodl.c | 78 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 */ 81 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* or y is NaN */ 85 (ux.bits.manh<=uy.bits.manh && 86 (ux.bits.manh<uy.bits.manh || 90 if(ux.bits.manh==uy.bits.manh && ux.bits.manl==uy.bits.manl) { 112 hx = SET_NBIT(ux.bits.manh); 113 hy = SET_NBIT(uy.bits.manh); [all...] |
e_hypotl.c | 28 h = uv.bits.manh; \ 65 man_t manh, manl; local 68 GET_LDBL_MAN(manh,manl,a); 69 if (manh == LDBL_NBIT && manl == 0) w = a; 70 GET_LDBL_MAN(manh,manl,b); 71 if (hb >= ESW(MAX_EXP) && manh == LDBL_NBIT && manl == 0) w = b; 82 man_t manh, manl; local 83 GET_LDBL_MAN(manh,manl,b); 84 if((manh|manl)==0) return a;
|
s_truncl.c | 53 if (((u.bits.manh & m) | u.bits.manl) == 0) 56 u.bits.manh &= ~m;
|
s_modfl.c | 52 /* The number of fraction bits in manh, not counting the integer bit */ 65 if (e < HIBITS) { /* Integer part is in manh. */ 70 if ((GETFRAC(ux.bits.manh, HIBITS - 1 - e) | 76 ux.bits.manh >>= HIBITS - 1 - e; 77 ux.bits.manh <<= HIBITS - 1 - e;
|
e_atan2l.c | 62 ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)!=0) || /* x is NaN */ 64 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* y is NaN */ 66 if (expsignx==BIAS && ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)==0) 71 if(expty==0 && ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)==0) { 80 if(exptx==0 && ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)==0)
|
e_sqrtl.c | 44 if (++u.bits.manh == 0) { 46 u.bits.manh |= LDBL_NBIT; 60 if (u.bits.manh-- == LDBL_NBIT) { 62 u.bits.manh |= LDBL_NBIT; 92 if ((u.bits.manh | u.bits.manl | u.bits.exp) == 0)
|
s_remquol.c | 85 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 */ 88 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* or y is NaN */ 92 (ux.bits.manh<=uy.bits.manh && 93 (ux.bits.manh<uy.bits.manh || 98 if(ux.bits.manh==uy.bits.manh && ux.bits.manl==uy.bits.manl) { 121 hx = SET_NBIT(ux.bits.manh); 122 hy = SET_NBIT(uy.bits.manh); [all...] |
s_frexpl.c | 46 if ((u.bits.manl | u.bits.manh) == 0) {
|
e_asinl.c | 43 if(expt==BIAS && ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)==0) 63 if(u.bits.manh>=THRESH) { /* if |x| is close to 1 */
|
/bionic/libm/arm/ |
_fpmath.h | 42 unsigned int manh :20; member in struct:IEEEl2bits::__anon740 51 unsigned int manh :20; 66 (a)[1] = (uint32_t)(u).bits.manh; \
|
/bionic/libm/ |
fpmath.h | 56 unsigned int manh :20; member in struct:IEEEd2bits::__anon742 62 unsigned int manh :20; 68 unsigned int manh :20;
|
isinf.c | 44 return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.manh == 0); 64 return (u.bits.exp == 32767 && u.bits.manl == 0 && u.bits.manh == 0); 66 return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.manh == 0);
|
fpclassify.c | 63 if ((u.bits.manl | u.bits.manh) == 0) 68 if ((u.bits.manl | u.bits.manh) == 0) 82 if ((u.bits.manl | u.bits.manh) == 0) 88 if ((u.bits.manl | u.bits.manh) == 0)
|