Home
last modified time | relevance | path

Searched refs:m_max (Results 1 – 13 of 13) sorted by relevance

/external/eigen/Eigen/src/Eigen2Support/Geometry/
DAlignedBox.h41 inline explicit AlignedBox(int _dim) : m_min(_dim), m_max(_dim) in AlignedBox()
45 inline AlignedBox(const VectorType& _min, const VectorType& _max) : m_min(_min), m_max(_max) {} in AlignedBox()
48 inline explicit AlignedBox(const VectorType& p) : m_min(p), m_max(p) {} in AlignedBox()
56 inline bool isNull() const { return (m_min.cwise() > m_max).any(); } in isNull()
62 m_max.setConstant(-(std::numeric_limits<Scalar>::max)()); in setNull()
70 inline const VectorType& (max)() const { return m_max; }
72 inline VectorType& (max)() { return m_max; }
76 { return (m_min.cwise()<=p).all() && (p.cwise()<=m_max).all(); } in contains()
80 { return (m_min.cwise()<=(b.min)()).all() && ((b.max)().cwise()<=m_max).all(); } in contains()
84 { m_min = (m_min.cwise().min)(p); m_max = (m_max.cwise().max)(p); return *this; } in extend()
[all …]
/external/eigen/Eigen/src/Geometry/
DAlignedBox.h63 inline explicit AlignedBox(Index _dim) : m_min(_dim), m_max(_dim) in AlignedBox()
68 …lignedBox(const OtherVectorType1& _min, const OtherVectorType2& _max) : m_min(_min), m_max(_max) {} in AlignedBox()
76 m_max = p; in AlignedBox()
91 inline bool isEmpty() const { return (m_min.array() > m_max.array()).any(); } in isEmpty()
97 m_max.setConstant( ScalarTraits::lowest() ); in setEmpty()
105 inline const VectorType& (max)() const { return m_max; }
107 inline VectorType& (max)() { return m_max; }
113 { return (m_min+m_max)/2; } in center()
120 { return m_max - m_min; } in sizes()
151 if( mult & corner ) res[d] = m_max[d]; in corner()
[all …]
/external/emma/core/java12/com/vladium/util/
DByteArrayIStream.java40 m_max = length; in ByteArrayIStream()
47 if (m_pos >= m_max) in read()
61 final int max = m_max; in read()
81 return m_max - m_pos; in available()
86 if (m_pos + n > m_max) n = m_max - m_pos; in skip()
119 private final int m_max; field in ByteArrayIStream
/external/deqp/framework/randomshaders/
DrsgVariableValue.hpp200 ConstValueRangeAccess (void) : m_type(DE_NULL), m_min(DE_NULL), m_max(DE_NULL) {} in ConstValueRangeAccess()
201 …onst Scalar* maxVal) : m_type(&type), m_min(const_cast<Scalar*>(minVal)), m_max(const_cast<Scalar*… in ConstValueRangeAccess()
205 ConstValueAccess getMax (void) const { return ConstValueAccess(*m_type, m_max); } in getMax()
220 Scalar* m_max; 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()
247 ValueAccess getMax (void) { return ValueAccess(*m_type, m_max); } in getMax()
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 …getValueRange (void) { return ValueRangeAccess(m_variable->getType(), &m_min[0], &m_max[0]); } in getValueRange()
77 std::vector<Scalar> m_max; member in rsg::ShaderInput
DrsgVariableValue.cpp161 , m_max (type.getScalarSize()) in ValueRange()
168 , m_max (type.getScalarSize()) in ValueRange()
177 , m_max (type.getScalarSize()) in ValueRange()
186 , m_max (other.getType().getScalarSize()) in ValueRange()
DrsgShader.cpp61 , m_max (variable->getType().getScalarSize()) in ShaderInput()
64 ValueAccess(variable->getType(), &m_max[0]) = valueRange.getMax().value(); in ShaderInput()
/external/deqp/modules/gles2/accuracy/
Des2aVaryingInterpolationTests.cpp108 tcu::Vec3 m_max; member in deqp::gles2::Accuracy::InterpolationCase
116 , m_max (maxVal) in InterpolationCase()
211 tcu::Vec3 scale = 1.0f / (m_max - m_min); in iterate()
/external/deqp/modules/gles3/accuracy/
Des3aVaryingInterpolationTests.cpp111 tcu::Vec3 m_max; member in deqp::gles3::Accuracy::InterpolationCase
119 , m_max (maxVal) in InterpolationCase()
218 tcu::Vec3 scale = 1.0f / (m_max - m_min); in iterate()
/external/deqp/modules/gles3/stress/
Des3sDrawTests.cpp78 const int m_max; member in deqp::gles3::Stress::__anon0c4fdb020111::DrawInvalidRangeCase
92 , m_max (max) in DrawInvalidRangeCase()
162 deUint32 max = m_max; in iterate()
/external/deqp/modules/gles31/functional/
Des31fShaderImageLoadStoreTests.cpp2693 R32UIImageSingleValueVerifier (const deUint32 value) : m_min(value), m_max(value) {} in R32UIImageSingleValueVerifier()
2694 R32UIImageSingleValueVerifier (const deUint32 min, const deUint32 max) : m_min(min), m_max(max) {} in R32UIImageSingleValueVerifier()
2701 …pecting to get value " << (m_min == m_max ? toString(m_min) : "in range [" + toString(m_min) + ", … in operator ()()
2704 if (!de::inRange(resultValue, m_min, m_max)) in operator ()()
2718 const deUint32 m_max; member in deqp::gles31::Functional::__anon0a49b9df0111::R32UIImageSingleValueVerifier
/external/owasp/sanitizer/tools/emma/lib/
Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/ ...
/external/emma/lib/
Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/ ...