Lines Matching refs:_f
736 #define mpfr_cmp_ui(_f,_u) \
738 mpfr_sgn (_f) : \
739 mpfr_cmp_ui_2exp ((_f),(_u),0))
741 #define mpfr_cmp_si(_f,_s) \
743 mpfr_cmp_ui ((_f), (_s)) : \
744 mpfr_cmp_si_2exp ((_f), (_s), 0))
747 #define mpfr_set_ui(_f,_u,_r) \
750 mpfr_ptr _p = (_f); \
754 mpfr_set_ui_2exp ((_f), (_u), 0, (_r)))
757 #define mpfr_set_si(_f,_s,_r) \
759 mpfr_set_ui ((_f), (_s), (_r)) : \
760 mpfr_set_si_2exp ((_f), (_s), 0, (_r)))