Home
last modified time | relevance | path

Searched refs:e_float (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lldb/source/Utility/
DScalar.cpp36 case e_float: in GetPromoKey()
48 return PromotionKey{e_float, entry.index(), false}; in GetFloatPromoKey()
63 case e_float: in PromoteToMaxType()
125 case e_float: in GetBytes()
137 case e_float: in GetByteSize()
149 case e_float: in IsZero()
165 case e_float: in GetValue()
181 case e_float: in IntegralPromote()
204 case e_float: in FloatPromote()
213 m_type = e_float; in FloatPromote()
[all …]
/external/llvm-project/lldb/include/lldb/Utility/
DScalar.h48 e_float, enumerator
63 Scalar(float v) : m_type(e_float), m_float(v) {} in Scalar()
64 Scalar(double v) : m_type(e_float), m_float(v) {} in Scalar()
65 Scalar(long double v) : m_type(e_float), m_float(double(v)) { in Scalar()
106 bool IsValid() const { return (m_type >= e_int) && (m_type <= e_float); } in IsValid()
/external/llvm-project/lldb/unittests/Utility/
DScalarTest.cpp309 EXPECT_EQ(Scalar::e_float, a.GetType()); in TEST()