Home
last modified time | relevance | path

Searched refs:TCU_INFINITY (Results 1 – 6 of 6) 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()
65 , m_warningLo (-TCU_INFINITY) in Interval()
66 , m_warningHi (TCU_INFINITY) {} in Interval()
72 , m_lo (m_hasNaN ? TCU_INFINITY : val) in Interval()
73 , m_hi (m_hasNaN ? -TCU_INFINITY : val) in Interval()
74 , m_warningLo (-TCU_INFINITY) in Interval()
75 , m_warningHi (TCU_INFINITY) {} in Interval()
79 …: m_hasNaN(hasNaN_), m_lo(lo_), m_hi(hi_), m_warningLo(-TCU_INFINITY), m_warningHi(TCU_INFINITY) {} in Interval()
[all …]
DtcuFloatFormat.cpp166 return chooseInterval(m_hasInf, rSign * getMaxValue(), rSign * TCU_INFINITY); in clampValue()
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderBuiltinPrecisionTests.cpp1494 …const bool is16bit) const {DE_UNREF(is16bit); return Interval(true, -TCU_INFINITY, TCU_INFINITY); } in getInputRange()
2418 if (((xi.contains(-TCU_INFINITY) || xi.contains(TCU_INFINITY)) && yi.contains(0.0)) || in innerExtrema()
2419 ((yi.contains(-TCU_INFINITY) || yi.contains(TCU_INFINITY)) && xi.contains(0.0))) in innerExtrema()
2504 if (dst.contains(-TCU_INFINITY)) ret |= -ctx.format.getMaxValue(); in applyPoint()
2505 if (dst.contains(+TCU_INFINITY)) ret |= +ctx.format.getMaxValue(); in applyPoint()
2526 return TCU_INFINITY; // Can be any number, but must be a number. in precision()
2546 return Interval(0.0, TCU_INFINITY); in getCodomain()
2561 return Interval(0.0, TCU_INFINITY); in getCodomain()
3179 if (xi.intersects(Interval(-TCU_INFINITY, 0.0))) in innerExtrema()
4166 if (!ret.isFinite() && (ret.lo()!=-TCU_INFINITY || ret.hi() != TCU_INFINITY)) in doFail()
[all …]
/external/deqp/modules/glshared/
DglsBuiltinPrecisionTests.cpp1987 if (((xi.contains(-TCU_INFINITY) || xi.contains(TCU_INFINITY)) && yi.contains(0.0)) || in innerExtrema()
1988 ((yi.contains(-TCU_INFINITY) || yi.contains(TCU_INFINITY)) && xi.contains(0.0))) in innerExtrema()
2070 if (dst.contains(-TCU_INFINITY)) ret |= -ctx.format.getMaxValue(); in applyPoint()
2071 if (dst.contains(+TCU_INFINITY)) ret |= +ctx.format.getMaxValue(); in applyPoint()
2092 return TCU_INFINITY; // Can be any number, but must be a number. in precision()
2111 return Interval(0.0, TCU_INFINITY); in getCodomain()
2139 return Interval(0.0, TCU_INFINITY); in getCodomain()
2499 if (xi.intersects(Interval(-TCU_INFINITY, 0.0))) in innerExtrema()
3505 if (x.hasNaN() || x.contains(TCU_INFINITY) || x.contains(-TCU_INFINITY)) in doApply()
3521 exponent = Interval(-TCU_INFINITY, de::max(loExp, hiExp)); in doApply()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/ycbcr/
DvktYCbCrUtil.cpp1813 minBounds.resize(sts.size(), Vec4(TCU_INFINITY)); in calculateBounds()
1814 maxBounds.resize(sts.size(), Vec4(-TCU_INFINITY)); in calculateBounds()
1816 uvBounds.resize(sts.size(), Vec4(TCU_INFINITY, -TCU_INFINITY, TCU_INFINITY, -TCU_INFINITY)); in calculateBounds()
/external/deqp/modules/egl/
DteglResizeTests.cpp456 return (Interval(i) + margin) & Interval(0.0, TCU_INFINITY); in approximateInt()