Home
last modified time | relevance | path

Searched refs:TCU_INFINITY (Results 1 – 5 of 5) sorted by relevance

/external/deqp/framework/common/
DtcuInterval.hpp33 #define TCU_INFINITY (::std::numeric_limits<float>::infinity()) macro
63 , m_lo (TCU_INFINITY) in Interval()
64 , m_hi (-TCU_INFINITY) {} in Interval()
70 , m_lo (m_hasNaN ? TCU_INFINITY : val) in Interval()
71 , m_hi (m_hasNaN ? -TCU_INFINITY : val) {} in Interval()
84 bool isFinite (void) const { return m_lo > -TCU_INFINITY && m_hi < TCU_INFINITY; } in isFinite()
132 return Interval(nan, -TCU_INFINITY, TCU_INFINITY); in unbounded()
DtcuFloatFormat.cpp166 return chooseInterval(m_hasInf, rSign * getMaxValue(), rSign * TCU_INFINITY); in clampValue()
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderBuiltinPrecisionTests.cpp1936 if (((xi.contains(-TCU_INFINITY) || xi.contains(TCU_INFINITY)) && yi.contains(0.0)) || in innerExtrema()
1937 ((yi.contains(-TCU_INFINITY) || yi.contains(TCU_INFINITY)) && xi.contains(0.0))) in innerExtrema()
2019 if (dst.contains(-TCU_INFINITY)) ret |= -ctx.format.getMaxValue(); in applyPoint()
2020 if (dst.contains(+TCU_INFINITY)) ret |= +ctx.format.getMaxValue(); in applyPoint()
2041 return TCU_INFINITY; // Can be any number, but must be a number. in precision()
2060 return Interval(0.0, TCU_INFINITY); in getCodomain()
2088 return Interval(0.0, TCU_INFINITY); in getCodomain()
2433 if (xi.intersects(Interval(-TCU_INFINITY, 0.0))) in innerExtrema()
3304 if (x.hasNaN() || x.contains(TCU_INFINITY) || x.contains(-TCU_INFINITY)) in doApply()
3320 exponent = Interval(-TCU_INFINITY, de::max(loExp, hiExp)); in doApply()
[all …]
/external/deqp/modules/glshared/
DglsBuiltinPrecisionTests.cpp1957 if (((xi.contains(-TCU_INFINITY) || xi.contains(TCU_INFINITY)) && yi.contains(0.0)) || in innerExtrema()
1958 ((yi.contains(-TCU_INFINITY) || yi.contains(TCU_INFINITY)) && xi.contains(0.0))) in innerExtrema()
2040 if (dst.contains(-TCU_INFINITY)) ret |= -ctx.format.getMaxValue(); in applyPoint()
2041 if (dst.contains(+TCU_INFINITY)) ret |= +ctx.format.getMaxValue(); in applyPoint()
2062 return TCU_INFINITY; // Can be any number, but must be a number. in precision()
2081 return Interval(0.0, TCU_INFINITY); in getCodomain()
2109 return Interval(0.0, TCU_INFINITY); in getCodomain()
2454 if (xi.intersects(Interval(-TCU_INFINITY, 0.0))) in innerExtrema()
3355 if (x.hasNaN() || x.contains(TCU_INFINITY) || x.contains(-TCU_INFINITY)) in doApply()
3371 exponent = Interval(-TCU_INFINITY, de::max(loExp, hiExp)); in doApply()
[all …]
/external/deqp/modules/egl/
DteglResizeTests.cpp455 return (Interval(i) + margin) & Interval(0.0, TCU_INFINITY); in approximateInt()