OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TYPE_FLOAT64
(Results
1 - 2
of
2
) sorted by null
/external/deqp/framework/common/
tcuTestLog.hpp
217
enum Type { TYPE_INT64 = 0,
TYPE_FLOAT64
, TYPE_LAST };
227
Value (double v) : type(
TYPE_FLOAT64
) { value.float64 = v; }
/external/deqp/executor/
xeTestCaseResult.hpp
168
TYPE_FLOAT64
,
175
NumericValue (double value) : m_type(
TYPE_FLOAT64
) { m_value.float64 = value; }
179
double getFloat64 (void) const { DE_ASSERT(getType() ==
TYPE_FLOAT64
); return m_value.float64; }
Completed in 91 milliseconds