/external/eigen/Eigen/src/Eigen2Support/Geometry/ |
H A D | 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 141 VectorType m_min, m_max; member in class:Eigen::AlignedBox [all...] |
/external/deqp/framework/randomshaders/ |
H A D | 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
|
H A D | 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 305 std::vector<Scalar> m_min; member in class:rsg::ValueRange [all...] |
/external/deqp/modules/gles2/accuracy/ |
H A D | 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/ |
H A D | 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/eigen/Eigen/src/Geometry/ |
H A D | AlignedBox.h | 68 inline explicit AlignedBox(Index _dim) : m_min(_dim), m_max(_dim) 74 inline AlignedBox(const OtherVectorType1& _min, const OtherVectorType2& _max) : m_min(_min), m_max(_max) {} 78 inline explicit AlignedBox(const MatrixBase<Derived>& p) : m_min(p), m_max(m_min) 84 inline Index dim() const { return AmbientDimAtCompileTime==Dynamic ? m_min.size() : Index(AmbientDimAtCompileTime); } 94 inline bool isEmpty() const { return (m_min.array() > m_max.array()).any(); } 100 m_min.setConstant( ScalarTraits::highest() ); 105 inline const VectorType& (min)() const { return m_min; } 107 inline VectorType& (min)() { return m_min; } 117 { return (m_min 307 VectorType m_min, m_max; member in class:Eigen::AlignedBox [all...] |
/external/deqp/modules/gles3/stress/ |
H A D | es3sDrawTests.cpp | 77 const int m_min; member in class:deqp::gles3::Stress::__anon4559::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/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/ |
H A D | btBoxCollision.h | 232 btVector3 m_min; variable 243 m_min[0] = BT_MIN3(V1[0],V2[0],V3[0]); 244 m_min[1] = BT_MIN3(V1[1],V2[1],V3[1]); 245 m_min[2] = BT_MIN3(V1[2],V2[2],V3[2]); 257 m_min[0] = BT_MIN3(V1[0],V2[0],V3[0]); 258 m_min[1] = BT_MIN3(V1[1],V2[1],V3[1]); 259 m_min[2] = BT_MIN3(V1[2],V2[2],V3[2]); 265 m_min[0] -= margin; 266 m_min[1] -= margin; 267 m_min[ [all...] |
H A D | gim_box_collision.h | 200 btVector3 m_min; member in class:GIM_AABB 211 m_min[0] = GIM_MIN3(V1[0],V2[0],V3[0]); 212 m_min[1] = GIM_MIN3(V1[1],V2[1],V3[1]); 213 m_min[2] = GIM_MIN3(V1[2],V2[2],V3[2]); 225 m_min[0] = GIM_MIN3(V1[0],V2[0],V3[0]); 226 m_min[1] = GIM_MIN3(V1[1],V2[1],V3[1]); 227 m_min[2] = GIM_MIN3(V1[2],V2[2],V3[2]); 233 m_min[0] -= margin; 234 m_min[1] -= margin; 235 m_min[ [all...] |
/external/deqp/modules/gles31/functional/ |
H A D | es31fShaderImageLoadStoreTests.cpp | 2710 R32UIImageSingleValueVerifier (const deUint32 value) : m_min(value), m_max(value) {} 2711 R32UIImageSingleValueVerifier (const deUint32 min, const deUint32 max) : m_min(min), m_max(max) {} 2718 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; 2721 if (!de::inRange(resultValue, m_min, m_max)) 2734 const deUint32 m_min; member in class:deqp::gles31::Functional::__anon4694::R32UIImageSingleValueVerifier
|