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

  /external/eigen/Eigen/src/Eigen2Support/Geometry/
AlignedBox.h 41 inline explicit AlignedBox(int _dim) : m_min(_dim), m_max(_dim)
45 inline AlignedBox(const VectorType& _min, const VectorType& _max) : m_min(_min), m_max(_max) {}
48 inline explicit AlignedBox(const VectorType& p) : m_min(p), m_max(p) {}
53 inline int dim() const { return AmbientDimAtCompileTime==Dynamic ? m_min.size()-1 : AmbientDimAtCompileTime; }
56 inline bool isNull() const { return (m_min.cwise() > m_max).any(); }
61 m_min.setConstant( (std::numeric_limits<Scalar>::max)());
66 inline const VectorType& (min)() const { return m_min; }
68 inline VectorType& (min)() { return m_min; }
76 { return (m_min.cwise()<=p).all() && (p.cwise()<=m_max).all(); }
80 { return (m_min.cwise()<=(b.min)()).all() && ((b.max)().cwise()<=m_max).all();
141 VectorType m_min, m_max; member in class:Eigen::AlignedBox
    [all...]
  /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 63 inline explicit AlignedBox(Index _dim) : m_min(_dim), m_max(_dim)
68 inline AlignedBox(const OtherVectorType1& _min, const OtherVectorType2& _max) : m_min(_min), m_max(_max) {}
75 m_min = p;
82 inline Index dim() const { return AmbientDimAtCompileTime==Dynamic ? m_min.size() : Index(AmbientDimAtCompileTime); }
91 inline bool isEmpty() const { return (m_min.array() > m_max.array()).any(); }
96 m_min.setConstant( ScalarTraits::highest() );
101 inline const VectorType& (min)() const { return m_min; }
103 inline VectorType& (min)() { return m_min; }
113 { return (m_min+m_max)/2; }
120 { return m_max - m_min; }
290 VectorType m_min, m_max; member in class:Eigen::AlignedBox
    [all...]
  /external/deqp/modules/gles2/accuracy/
es2aVaryingInterpolationTests.cpp 107 tcu::Vec3 m_min; member in class:deqp::gles2::Accuracy::InterpolationCase
115 , m_min (minVal)
211 tcu::Vec3 scale = 1.0f / (m_max - m_min);
212 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::__anon7886::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 2717 const deUint32 m_min; member in class:deqp::gles31::Functional::__anon8015::R32UIImageSingleValueVerifier
    [all...]

Completed in 1139 milliseconds