HomeSort by relevance Sort by last modified time
    Searched defs:m_min (Results 1 - 7 of 7) sorted by null

  /external/deqp/framework/randomshaders/
rsgShader.hpp 71 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
rsgVariableValue.hpp 200 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 + offset, m_max + offset)
305 std::vector<Scalar> m_min; member in class:rsg::ValueRange
    [all...]
  /external/eigen/Eigen/src/Geometry/
AlignedBox.h 69 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+m_max)/RealScalar(2);
307 VectorType m_min, m_max; member in class:Eigen::AlignedBox
    [all...]
  /external/deqp/modules/gles2/accuracy/
es2aVaryingInterpolationTests.cpp 108 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/
es3aVaryingInterpolationTests.cpp 110 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/
es3sDrawTests.cpp 77 const int m_min; member in class:deqp::gles3::Stress::__anon17317::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/
es31fShaderImageLoadStoreTests.cpp 2735 const deUint32 m_min; member in class:deqp::gles31::Functional::__anon17409::R32UIImageSingleValueVerifier
    [all...]

Completed in 1105 milliseconds