Searched refs:m_min (Results 1 - 12 of 12) sorted by relevance

/external/eigen/Eigen/src/Geometry/
H A DAlignedBox.h69 EIGEN_DEVICE_FUNC inline explicit AlignedBox(Index _dim) : m_min(_dim), m_max(_dim)
75 EIGEN_DEVICE_FUNC inline AlignedBox(const OtherVectorType1& _min, const OtherVectorType2& _max) : m_min(_min), m_max(_max) {}
79 EIGEN_DEVICE_FUNC inline explicit AlignedBox(const MatrixBase<Derived>& p) : m_min(p), m_max(m_min)
85 EIGEN_DEVICE_FUNC inline Index dim() const { return AmbientDimAtCompileTime==Dynamic ? m_min.size() : Index(AmbientDimAtCompileTime); }
95 EIGEN_DEVICE_FUNC inline bool isEmpty() const { return (m_min.array() > m_max.array()).any(); }
101 m_min.setConstant( ScalarTraits::highest() );
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
307 VectorType m_min, m_max; member in class:Eigen::AlignedBox
[all...]
/external/deqp/framework/randomshaders/
H A DrsgShader.hpp71 ConstValueRangeAccess getValueRange (void) const { return ConstValueRangeAccess(m_variable->getType(), &m_min[0], &m_max[0]); }
72 ValueRangeAccess getValueRange (void) { return ValueRangeAccess(m_variable->getType(), &m_min[0], &m_max[0]); }
76 std::vector<Scalar> m_min; member in class:rsg::ShaderInput
H A DrsgVariableValue.hpp200 ConstValueRangeAccess (void) : m_type(DE_NULL), m_min(DE_NULL), m_max(DE_NULL) {}
201 ConstValueRangeAccess (const VariableType& type, const Scalar* minVal, const Scalar* maxVal) : m_type(&type), m_min(const_cast<Scalar*>(minVal)), m_max(const_cast<Scalar*>(maxVal)) {}
204 ConstValueAccess getMin (void) const { return ConstValueAccess(*m_type, m_min); }
219 Scalar* m_min; // \note See note in ConstValueAccess member in class:rsg::ConstValueRangeAccess
225 return ConstValueRangeAccess(m_type->getElementType(), m_min + compNdx, m_max + compNdx);
231 return ConstValueRangeAccess(m_type->getElementType(), m_min + offset, m_max + offset);
237 return ConstValueRangeAccess(m_type->getMembers()[memberNdx].getType(), m_min + offset, m_max + offset);
246 ValueAccess getMin (void) { return ValueAccess(*m_type, m_min); }
256 return ValueRangeAccess(m_type->getElementType(), m_min + compNdx, m_max + compNdx);
262 return ValueRangeAccess(m_type->getElementType(), m_min
305 std::vector<Scalar> m_min; member in class:rsg::ValueRange
[all...]
H A DrsgShader.cpp60 , m_min (variable->getType().getScalarSize())
63 ValueAccess(variable->getType(), &m_min[0]) = valueRange.getMin().value();
H A DrsgVariableValue.cpp160 , m_min (type.getScalarSize())
167 , m_min (type.getScalarSize())
176 , m_min (type.getScalarSize())
185 , m_min (other.getType().getScalarSize())
/external/deqp/external/openglcts/modules/gles31/
H A Des31cSampleShadingTests.cpp184 GLfloat m_min; member in class:glcts::SampleShadingRenderCase
211 , m_min(min)
316 m_min, m_min, 0.0f, 1.0f, m_min, m_max, 0.0f, 1.0f, m_max, m_min, 0.0f, 1.0f, m_max, m_max, 0.0f, 1.0f,
490 GLfloat m_min; member in class:glcts::SampleShadingRenderFormatTests
506 , m_min(min)
520 m_internalFormat, m_texFormat, m_sampler.c_str(), m_outType.c_str(), m_min,
524 m_internalFormat, m_texFormat, m_sampler.c_str(), m_outType.c_str(), m_min,
[all...]
/external/deqp/external/openglcts/modules/common/
H A DglcShaderMultisampleInterpolationTests.cpp233 GLfloat m_min; member in class:deqp::ShaderMultisampleInterpolationBaseCase
262 , m_min(min)
396 m_min, m_min, 0.0f, 1.0f, m_min, m_max, 0.0f, 1.0f, m_max, m_min, 0.0f, 1.0f, m_max, m_max, 0.0f, 1.0f,
/external/deqp/modules/gles2/accuracy/
H A Des2aVaryingInterpolationTests.cpp108 tcu::Vec3 m_min; member in class:deqp::gles2::Accuracy::InterpolationCase
116 , m_min (minVal)
212 tcu::Vec3 scale = 1.0f / (m_max - m_min);
213 tcu::Vec3 bias = -1.0f*m_min*scale;
/external/deqp/modules/gles3/accuracy/
H A Des3aVaryingInterpolationTests.cpp110 tcu::Vec3 m_min; member in class:deqp::gles3::Accuracy::InterpolationCase
118 , m_min (minVal)
218 tcu::Vec3 scale = 1.0f / (m_max - m_min);
219 tcu::Vec3 bias = -1.0f*m_min*scale;
/external/deqp/modules/gles3/stress/
H A Des3sDrawTests.cpp77 const int m_min; member in class:deqp::gles3::Stress::__anon5322::DrawInvalidRangeCase
91 , m_min (min)
161 deUint32 min = m_min;
206 // Even if the indices are in range (m_min = 0), the specification allows partial processing of vertices in the range,
/external/deqp/modules/gles31/functional/
H A Des31fShaderImageLoadStoreTests.cpp2711 R32UIImageSingleValueVerifier (const deUint32 value) : m_min(value), m_max(value) {}
2712 R32UIImageSingleValueVerifier (const deUint32 min, const deUint32 max) : m_min(min), m_max(max) {}
2719 log << TestLog::Message << "// Note: expecting to get value " << (m_min == m_max ? toString(m_min) : "in range [" + toString(m_min) + ", " + toString(m_max) + "]") << TestLog::EndMessage;
2722 if (!de::inRange(resultValue, m_min, m_max))
2735 const deUint32 m_min; member in class:deqp::gles31::Functional::__anon5426::R32UIImageSingleValueVerifier
/external/deqp/external/openglcts/modules/gl/
H A Dgl4cVertexAttrib64BitTest.cpp672 const GLdouble m_min; member in class:VertexAttrib64Bit::GetVertexAttribTest
688 , m_min(-16.384)
763 vertexAttribute<SIZE> vertex_attribute(m_min, m_max);
792 vertexAttribute<SIZE> vertex_attribute(m_min, m_max);

Completed in 254 milliseconds