/third_party/boost/boost/multiprecision/detail/ |
D | float_string_cvt.hpp | 53 using default_ops::eval_pow; in convert_to_string() 103 eval_pow(t2, ten, e); in convert_to_string() 111 eval_pow(t, ten, -expon); in convert_to_string() 197 using default_ops::eval_pow; in convert_from_string() 297 eval_pow(t, t, expon); in convert_from_string() 302 eval_pow(t, t, expon + digits_seen + 1); in convert_from_string() 305 eval_pow(t, t, -digits_seen - 1); in convert_from_string()
|
/third_party/boost/boost/multiprecision/detail/functions/ |
D | pow.hpp | 91 inline typename enable_if_c<is_integral<U>::value>::type eval_pow(T& result, const T& t, const U& p) in eval_pow() function 468 inline void eval_pow(T& result, const T& x, const T& a) function 477 eval_pow(t, x, a); 575 eval_pow(da, x, t); 617 eval_pow(result, fa, a); 727 eval_pow(T& result, const T& x, const A& a) function 735 eval_pow(result, x, c); 744 eval_pow(T& result, const A& x, const T& a) function 750 eval_pow(result, c, a); 780 eval_pow(result, temp, arg);
|
/third_party/boost/boost/multiprecision/ |
D | mpfi.hpp | 917 inline void eval_pow(mpfi_float_backend<Digits10>& result, const mpfi_float_backend<Digits10>& b, c… in eval_pow() function 941 eval_pow(t2, b, t1); in eval_pow() 957 eval_pow(result, pb, e); in eval_pow()
|
D | complex_adaptor.hpp | 427 inline void eval_pow(complex_adaptor<Backend>& result, const complex_adaptor<Backend>& b, const com… in eval_pow() function
|
D | float128.hpp | 597 inline void eval_pow(float128_backend& result, const float128_backend& a, const float128_backend& b) in eval_pow() function
|
D | mpfr.hpp | 1387 inline void eval_pow(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<D… in eval_pow() function 1410 eval_pow(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, All… in eval_pow() function 1417 eval_pow(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, All… in eval_pow() function
|
D | mpc.hpp | 1206 inline void eval_pow(mpc_complex_backend<Digits10>& result, const mpc_complex_backend<Digits10>& b,… in eval_pow() function
|
/third_party/boost/libs/multiprecision/performance/ |
D | arithmetic_backend.hpp | 470 inline BOOST_MP_CXX14_CONSTEXPR void eval_pow(arithmetic_backend<Arithmetic>& result, const arithme… in eval_pow() function
|
/third_party/boost/libs/multiprecision/test/ |
D | skeleton_backend.hpp | 912 void eval_pow(skeleton_backend& result, const skeleton_backend& a, const skeleton_backend& b);
|
/third_party/boost/libs/multiprecision/doc/ |
D | multiprecision.qbk | 5175 The default version of this function is implemented in terms of `eval_pow`.][[space]]] 5203 [[`eval_pow(b, cb, cb2)`][`void`][Performs the equivalent operation to `std::pow` on arguments `cb`…
|