Home
last modified time | relevance | path

Searched refs:m_min (Results 1 – 9 of 9) sorted by relevance

/external/eigen/Eigen/src/Geometry/
DAlignedBox.h69 EIGEN_DEVICE_FUNC inline explicit AlignedBox(Index _dim) : m_min(_dim), m_max(_dim) in AlignedBox()
75 … AlignedBox(const OtherVectorType1& _min, const OtherVectorType2& _max) : m_min(_min), m_max(_max)… in AlignedBox()
79 …EIGEN_DEVICE_FUNC inline explicit AlignedBox(const MatrixBase<Derived>& p) : m_min(p), m_max(m_min) in AlignedBox()
85 …EIGEN_DEVICE_FUNC inline Index dim() const { return AmbientDimAtCompileTime==Dynamic ? m_min.size(… in dim()
95 EIGEN_DEVICE_FUNC inline bool isEmpty() const { return (m_min.array() > m_max.array()).any(); } in isEmpty()
101 m_min.setConstant( ScalarTraits::highest() ); in setEmpty()
106 EIGEN_DEVICE_FUNC inline const VectorType& (min)() const { return m_min; }
108 EIGEN_DEVICE_FUNC inline VectorType& (min)() { return m_min; }
117 { return (m_min+m_max)/RealScalar(2); } in EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE()
124 { return m_max - m_min; } in sizes()
[all …]
/external/deqp/framework/randomshaders/
DrsgVariableValue.hpp200 ConstValueRangeAccess (void) : m_type(DE_NULL), m_min(DE_NULL), m_max(DE_NULL) {} in ConstValueRangeAccess()
201 …eType& type, const Scalar* minVal, const Scalar* maxVal) : m_type(&type), m_min(const_cast<Scalar*… in ConstValueRangeAccess()
204 ConstValueAccess getMin (void) const { return ConstValueAccess(*m_type, m_min); } in getMin()
219 Scalar* m_min; // \note See note in ConstValueAccess member in rsg::ConstValueRangeAccess
225 return ConstValueRangeAccess(m_type->getElementType(), m_min + compNdx, m_max + compNdx); in component()
231 return ConstValueRangeAccess(m_type->getElementType(), m_min + offset, m_max + offset); in arrayElement()
237 …return ConstValueRangeAccess(m_type->getMembers()[memberNdx].getType(), m_min + offset, m_max + of… in member()
246 ValueAccess getMin (void) { return ValueAccess(*m_type, m_min); } in getMin()
256 return ValueRangeAccess(m_type->getElementType(), m_min + compNdx, m_max + compNdx); in component()
262 return ValueRangeAccess(m_type->getElementType(), m_min + offset, m_max + offset); in arrayElement()
[all …]
DrsgShader.hpp71 …eRange (void) const { return ConstValueRangeAccess(m_variable->getType(), &m_min[0], &m_max[0]); } in getValueRange()
72 …ValueRangeAccess getValueRange (void) { return ValueRangeAccess(m_variable->getType(), &m_min in getValueRange()
76 std::vector<Scalar> m_min; member in rsg::ShaderInput
DrsgVariableValue.cpp160 , m_min (type.getScalarSize()) in ValueRange()
167 , m_min (type.getScalarSize()) in ValueRange()
176 , m_min (type.getScalarSize()) in ValueRange()
185 , m_min (other.getType().getScalarSize()) in ValueRange()
DrsgShader.cpp60 , m_min (variable->getType().getScalarSize()) in ShaderInput()
63 ValueAccess(variable->getType(), &m_min[0]) = valueRange.getMin().value(); in ShaderInput()
/external/deqp/modules/gles3/accuracy/
Des3aVaryingInterpolationTests.cpp110 tcu::Vec3 m_min; member in deqp::gles3::Accuracy::InterpolationCase
118 , m_min (minVal) in InterpolationCase()
218 tcu::Vec3 scale = 1.0f / (m_max - m_min); in iterate()
219 tcu::Vec3 bias = -1.0f*m_min*scale; in iterate()
/external/deqp/modules/gles2/accuracy/
Des2aVaryingInterpolationTests.cpp108 tcu::Vec3 m_min; member in deqp::gles2::Accuracy::InterpolationCase
116 , m_min (minVal) in InterpolationCase()
212 tcu::Vec3 scale = 1.0f / (m_max - m_min); in iterate()
213 tcu::Vec3 bias = -1.0f*m_min*scale; in iterate()
/external/deqp/modules/gles3/stress/
Des3sDrawTests.cpp77 const int m_min; member in deqp::gles3::Stress::__anon9f16cc810111::DrawInvalidRangeCase
91 , m_min (min) in DrawInvalidRangeCase()
161 deUint32 min = m_min; in iterate()
/external/deqp/modules/gles31/functional/
Des31fShaderImageLoadStoreTests.cpp2711 R32UIImageSingleValueVerifier (const deUint32 value) : m_min(value), m_max(value) {} in R32UIImageSingleValueVerifier()
2712 R32UIImageSingleValueVerifier (const deUint32 min, const deUint32 max) : m_min(min), m_max(max) {} in R32UIImageSingleValueVerifier()
2719 …e << "// Note: expecting to get value " << (m_min == m_max ? toString(m_min) : "in range [" + toSt… in operator ()()
2722 if (!de::inRange(resultValue, m_min, m_max)) in operator ()()
2735 const deUint32 m_min; member in deqp::gles31::Functional::__anonb29d2c9e0111::R32UIImageSingleValueVerifier