Lines Matching defs:real_concept

56 class real_concept  class
60 real_concept() : m_value(0){} in real_concept() function in boost::math::concepts::real_concept
61 real_concept(char c) : m_value(c){} in real_concept() function in boost::math::concepts::real_concept
63 real_concept(wchar_t c) : m_value(c){} in real_concept() function in boost::math::concepts::real_concept
65 real_concept(unsigned char c) : m_value(c){} in real_concept() function in boost::math::concepts::real_concept
66 real_concept(signed char c) : m_value(c){} in real_concept() function in boost::math::concepts::real_concept
67 real_concept(unsigned short c) : m_value(c){} in real_concept() function in boost::math::concepts::real_concept
68 real_concept(short c) : m_value(c){} in real_concept() function in boost::math::concepts::real_concept
69 real_concept(unsigned int c) : m_value(c){} in real_concept() function in boost::math::concepts::real_concept
70 real_concept(int c) : m_value(c){} in real_concept() function in boost::math::concepts::real_concept
71 real_concept(unsigned long c) : m_value(c){} in real_concept() function in boost::math::concepts::real_concept
72 real_concept(long c) : m_value(c){} in real_concept() function in boost::math::concepts::real_concept
74 real_concept(unsigned long long c) : m_value(static_cast<real_concept_base_type>(c)){} in real_concept() function in boost::math::concepts::real_concept
75 real_concept(long long c) : m_value(static_cast<real_concept_base_type>(c)){} in real_concept() function in boost::math::concepts::real_concept
77 real_concept(boost::ulong_long_type c) : m_value(static_cast<real_concept_base_type>(c)){} in real_concept() function in boost::math::concepts::real_concept
78 real_concept(boost::long_long_type c) : m_value(static_cast<real_concept_base_type>(c)){} in real_concept() function in boost::math::concepts::real_concept
80 real_concept(unsigned __int64 c) : m_value(static_cast<real_concept_base_type>(c)){} in real_concept() function in boost::math::concepts::real_concept
81 real_concept(__int64 c) : m_value(static_cast<real_concept_base_type>(c)){} in real_concept() function in boost::math::concepts::real_concept
83 real_concept(float c) : m_value(c){} in real_concept() function in boost::math::concepts::real_concept
84 real_concept(double c) : m_value(c){} in real_concept() function in boost::math::concepts::real_concept
85 real_concept(long double c) : m_value(c){} in real_concept() function in boost::math::concepts::real_concept
327 …eal_concept max_value<concepts::real_concept>(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE_SPEC(concepts::rea… in max_value()
333 …eal_concept min_value<concepts::real_concept>(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE_SPEC(concepts::rea… in min_value()
339 …concept log_max_value<concepts::real_concept>(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE_SPEC(concepts::rea… in log_max_value()
345 …concept log_min_value<concepts::real_concept>(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE_SPEC(concepts::rea… in log_min_value()
351 …:real_concept epsilon<concepts::real_concept>(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE_SPEC(concepts::rea… in epsilon()
361 inline int digits<concepts::real_concept>(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE_SPEC(concepts::real_con… in digits()