Searched refs:manh (Results 26 - 45 of 45) sorted by relevance

12

/freebsd-13-stable/lib/msun/src/
H A Ds_fmin.c46 if (u[0].bits.exp == 2047 && (u[0].bits.manh | u[0].bits.manl) != 0)
48 if (u[1].bits.exp == 2047 && (u[1].bits.manh | u[1].bits.manl) != 0)
H A Ds_isnan.c44 return (u.bits.exp == 2047 && (u.bits.manl != 0 || u.bits.manh != 0));
70 return (u.bits.exp == 32767 && (u.bits.manl != 0 || u.bits.manh != 0));
H A Ds_truncl.c53 if (((u.bits.manh & m) | u.bits.manl) == 0)
56 u.bits.manh &= ~m;
H A Ds_modfl.c54 /* The number of fraction bits in manh, not counting the integer bit */
67 if (e < HIBITS) { /* Integer part is in manh. */
72 if ((GETFRAC(ux.bits.manh, HIBITS - 1 - e) |
78 ux.bits.manh >>= HIBITS - 1 - e;
79 ux.bits.manh <<= HIBITS - 1 - e;
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_sqrtl.c46 if (++u.bits.manh == 0) {
48 u.bits.manh |= LDBL_NBIT;
62 if (u.bits.manh-- == LDBL_NBIT) {
64 u.bits.manh |= LDBL_NBIT;
94 if ((u.bits.manh | u.bits.manl | u.bits.exp) == 0)
H A Ds_remquol.c84 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 */
87 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* or y is NaN */
91 (ux.bits.manh<=uy.bits.manh &&
92 (ux.bits.manh<uy.bits.manh ||
97 if(ux.bits.manh==uy.bits.manh && ux.bits.manl==uy.bits.manl) {
120 hx = SET_NBIT(ux.bits.manh);
121 hy = SET_NBIT(uy.bits.manh);
[all...]
H A Ds_frexpl.c48 if ((u.bits.manl | u.bits.manh) == 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 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_nexttoward.c46 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl) != 0))
H A Ds_nexttowardf.c36 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl) != 0))
H A De_acosl.c53 if(expt==BIAS && ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)==0) {
H A Ds_cbrtl.c59 if ((u.bits.manh | u.bits.manl) == 0)
H A Dmath_private.h255 (ix1) = ew_u.xbits.manh; \
290 iw_u.xbits.manh = (ix1); \
/freebsd-13-stable/lib/libc/gen/
H A Dfrexp.c43 if ((u.bits.manl | u.bits.manh) == 0) {
H A Disnan.c62 return (u.bits.exp == 2047 && (u.bits.manl != 0 || u.bits.manh != 0));
/freebsd-13-stable/lib/msun/ld128/
H A De_rem_pio2l.h75 u.bits.manh < 0x921fb54442d1LL) {
H A Ds_exp2l.c370 if (u.xbits.manh != 0
405 v.xbits.manh = 0;
/freebsd-13-stable/lib/msun/ld80/
H A De_rem_pio2l.h85 if (ex < BIAS + 25 || (ex == BIAS + 25 && u.bits.manh < 0xc90fdaa2)) {

Completed in 81 milliseconds

12