Home
last modified time | relevance | path

Searched refs:mpfr_nan_p (Results 1 – 19 of 19) sorted by relevance

/dragonfly/contrib/mpc/src/
HDmul.c47 if ( mpfr_nan_p (mpc_realref (x)) || mpfr_nan_p (mpc_imagref (x)) in mul_infinite()
48 || mpfr_nan_p (mpc_realref (y)) || mpfr_nan_p (mpc_imagref (y))) { in mul_infinite()
82 int xr = (mpfr_zero_p (mpc_realref (x)) || mpfr_nan_p (mpc_realref (x)) ? 0 in mul_infinite()
84 int xi = (mpfr_zero_p (mpc_imagref (x)) || mpfr_nan_p (mpc_imagref (x)) ? 0 in mul_infinite()
86 int yr = (mpfr_zero_p (mpc_realref (y)) || mpfr_nan_p (mpc_realref (y)) ? 0 : 1); in mul_infinite()
87 int yi = (mpfr_zero_p (mpc_imagref (y)) || mpfr_nan_p (mpc_imagref (y)) ? 0 : 1); in mul_infinite()
212 else if (mpfr_nan_p (z) || (mpfr_zero_p (u) && mpfr_zero_p (v))) { in mpfr_fmma()
251 if (mpfr_nan_p (z)) { in mpfr_fmma()
607 if (mpfr_nan_p (mpc_realref (b)) || mpfr_nan_p (mpc_imagref (b)) in mpc_mul()
608 || mpfr_nan_p (mpc_realref (c)) || mpfr_nan_p (mpc_imagref (c))) { in mpc_mul()
HDmpc-impl.h59 #define MPFR_COPYSIGN(x,y,z,rnd) (mpfr_nan_p (z) ? \
116 #define mpc_nan_p(z) ((mpfr_nan_p(mpc_realref(z)) && !mpfr_inf_p(mpc_imagref(z))) || (mpfr_nan_p(mp…
HDsin_cos.c40 if (mpfr_nan_p (mpc_realref (op_loc)) || mpfr_nan_p (mpc_imagref (op_loc))) { in mpc_sin_cos_nonfinite()
42 if (mpfr_nan_p (mpc_imagref (op_loc))) { in mpc_sin_cos_nonfinite()
93 if (mpfr_nan_p (mpc_realref (op_loc))) { in mpc_sin_cos_nonfinite()
110 else if (mpfr_nan_p (mpc_imagref (op_loc))) { in mpc_sin_cos_nonfinite()
HDsqr.c59 else if (mpfr_nan_p (z) || (mpfr_zero_p (u) && mpfr_zero_p (v))) { in mpfr_fsss()
91 if (mpfr_nan_p (z)) { in mpfr_fsss()
177 if (mpfr_nan_p (mpc_realref (op)) || mpfr_nan_p (mpc_imagref (op))) { in mpc_sqr()
HDatan.c60 if (mpfr_nan_p (mpc_realref (op)) || mpfr_nan_p (mpc_imagref (op))) in mpc_atan()
62 if (mpfr_nan_p (mpc_realref (op))) in mpc_atan()
HDexp.c33 if (mpfr_nan_p (mpc_realref (op)) || mpfr_nan_p (mpc_imagref (op))) in mpc_exp()
HDlog.c39 if (mpfr_nan_p (mpc_realref (op))) { in mpc_log()
47 else if (mpfr_nan_p (mpc_imagref (op))) { in mpc_log()
HDtan.c37 if (mpfr_nan_p (mpc_realref (op))) in mpc_tan()
57 else if (mpfr_nan_p (mpc_imagref (op))) in mpc_tan()
HDacos.c39 if (mpfr_nan_p (mpc_realref (op)) || mpfr_nan_p (mpc_imagref (op))) in mpc_acos()
HDasin.c32 if (mpfr_nan_p (mpc_realref (op)) || mpfr_nan_p (mpc_imagref (op))) in mpc_asin()
HDacosh.c36 if (mpfr_zero_p (mpc_realref (op)) && mpfr_nan_p (mpc_imagref (op))) in mpc_acosh()
HDlog10.c103 if (mpfr_nan_p (mpc_realref (op))) in mpc_log10()
114 else if (mpfr_nan_p (mpc_imagref (op))) in mpc_log10()
HDsqrt.c107 if (mpfr_nan_p (mpc_realref (b)) || mpfr_nan_p (mpc_imagref (b))) in mpc_sqrt()
/dragonfly/contrib/mpfr/src/
HDisnan.c26 (mpfr_nan_p) (mpfr_srcptr x)
HDmpfr.h602 __MPFR_DECLSPEC int mpfr_nan_p _MPFR_PROTO((mpfr_srcptr));
751 #define mpfr_nan_p(_x) ((_x)->_mpfr_exp == __MPFR_EXP_NAN) macro
757 (mpfr_nan_p (_x) ? mpfr_set_erangeflag () : (mpfr_void) 0), 0 : \
/dragonfly/contrib/gcc-4.7/gcc/
HDrealmpfr.c75 if (mpfr_nan_p (m)) in real_from_mpfr()
/dragonfly/contrib/gcc-8.0/gcc/
HDrealmpfr.c77 if (mpfr_nan_p (m)) in real_from_mpfr()
HDreal.c2110 gcc_assert (!mpfr_nan_p (m) && !mpfr_inf_p (m)); in real_from_string()
/dragonfly/contrib/mpfr/doc/
HDmpfr.info1474 -- Function: int mpfr_nan_p (mpfr_t OP)
3988 * mpfr_nan_p: Comparison Functions.