Searched refs:manh (Results 1 - 25 of 47) sorted by last modified time

12

/freebsd-11-stable/lib/msun/src/
H A De_hypotl.c28 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;
H A Ds_isnan.c42 return (u.bits.exp == 2047 && (u.bits.manl != 0 || u.bits.manh != 0));
68 return (u.bits.exp == 32767 && (u.bits.manl != 0 || u.bits.manh != 0));
H A Dmath_private.h255 (ix1) = ew_u.xbits.manh; \
290 iw_u.xbits.manh = (ix1); \
H A Ds_scalbnl.c50 if ((u.bits.manh|u.bits.manl)==0) return x; /* +-0 */
H A Ds_logbl.c31 if ((u.bits.manl | u.bits.manh) == 0) { /* x == 0 */
36 if (u.bits.manh == 0) {
42 for (b = 0; !(u.bits.manh & m); m >>= 1)
H A Ds_fmin.c44 if (u[0].bits.exp == 2047 && (u[0].bits.manh | u[0].bits.manl) != 0)
46 if (u[1].bits.exp == 2047 && (u[1].bits.manh | u[1].bits.manl) != 0)
H A Ds_fmax.c44 if (u[0].bits.exp == 2047 && (u[0].bits.manh | u[0].bits.manl) != 0)
46 if (u[1].bits.exp == 2047 && (u[1].bits.manh | u[1].bits.manl) != 0)
H A De_acosl.c53 if(expt==BIAS && ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)==0) {
H A De_asinl.c43 if(expt==BIAS && ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)==0)
63 if(u.bits.manh>=THRESH) { /* if |x| is close to 1 */
H A De_atan2l.c62 ((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)
H A De_fmodl.c78 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...]
H A De_sqrtl.c44 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)
H A Ds_atanl.c46 ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)!=0)
53 expman = (expt << 8) | ((u.bits.manh >> (MANH_SIZE - 9)) & 0xff);
H A Ds_cbrtl.c59 if ((u.bits.manh | u.bits.manl) == 0)
H A Ds_ceill.c35 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
[all...]
H A Ds_floorl.c35 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
[all...]
H A Ds_fmaxl.c45 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)
H A Ds_fminl.c45 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)
/freebsd-11-stable/lib/libc/gen/
H A Disnan.c60 return (u.bits.exp == 2047 && (u.bits.manl != 0 || u.bits.manh != 0));
/freebsd-11-stable/lib/libc/include/
H A Dfpmath.h65 unsigned int manh :20; member in struct:IEEEd2bits::__anon4658
74 unsigned int manh :20;
/freebsd-11-stable/lib/msun/ld128/
H A De_rem_pio2l.h75 u.bits.manh < 0x921fb54442d1LL) {
H A Ds_exp2l.c368 if (u.xbits.manh != 0
403 v.xbits.manh = 0;
H A Ds_nanl.c44 u.ieee.bits.manh |= 1ULL << 47; /* make it a quiet NaN */
/freebsd-11-stable/lib/msun/ld80/
H A De_rem_pio2l.h85 if (ex < BIAS + 25 || (ex == BIAS + 25 && u.bits.manh < 0xc90fdaa2)) {
H A Ds_nanl.c44 u.ieee.bits.manh |= 0xc0000000; /* make it a quiet NaN */

Completed in 122 milliseconds

12