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

/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DAlignedBox.h41 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) {}
56 inline bool isNull() const { return (m_min.cwise() > m_max).any(); }
62 m_max.setConstant(-(std::numeric_limits<Scalar>::max)());
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(); }
80 { return (m_min.cwise()<=(b.min)()).all() && ((b.max)().cwise()<=m_max).all(); }
84 { m_min = (m_min.cwise().min)(p); m_max
141 VectorType m_min, m_max; member in class:Eigen::AlignedBox
[all...]
/external/qemu/memcheck/
H A Dmemcheck_common.h380 int m_max = addr_array->num - 1; local
385 while (m_min <= m_max) {
386 const int m = (m_min + m_max) >> 1;
392 m_max = m - 1;
412 int m_max; local
430 m_max = addr_array->num - 1;
431 while (m_min <= m_max) {
432 const int m = (m_min + m_max) >> 1;
438 m_max = m - 1;
443 if (m_max <
[all...]
/external/eigen/Eigen/src/Geometry/
H A DAlignedBox.h63 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) {}
76 m_max = p;
91 inline bool isEmpty() const { return (m_min.array() > m_max.array()).any(); }
97 m_max.setConstant( ScalarTraits::lowest() );
105 inline const VectorType& (max)() const { return m_max; }
107 inline VectorType& (max)() { return m_max; }
113 { return (m_min+m_max)/2; }
120 { return m_max - m_min; }
151 if( mult & corner ) res[d] = m_max[
290 VectorType m_min, m_max; member in class:Eigen::AlignedBox
[all...]
/external/emma/core/java12/com/vladium/util/
H A DByteArrayIStream.java40 m_max = length;
47 if (m_pos >= m_max)
61 final int max = m_max;
81 return m_max - m_pos;
86 if (m_pos + n > m_max) n = m_max - m_pos;
119 private final int m_max; field in class:ByteArrayIStream
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/
H A DTimingFunction.h267 , m_max(max)
271 double max() const { return m_max; }
278 double scaleToLocal(double x) const { return (x - m_min) / (m_max - m_min); }
279 double scaleFromLocal(double x) const { return blend(m_min, m_max, x); }
282 double m_max; member in class:WebCore::ChainedTimingFunction::Segment
H A DTimingFunctionTestHelper.cpp48 *os << "[" << segment.m_min << " -> " << segment.m_max << "]";
80 if ((lhs.m_min != rhs.m_min) || (lhs.m_max != rhs.m_max))
/external/qemu/
H A Dexec-all.h230 unsigned int m_max = (tb->tpc2gpc_pairs - 1) << 1; local
235 while (m_min <= m_max) {
236 const unsigned int m = ((m_min + m_max) >> 1) & ~1;
238 m_max = m - 2;
239 } else if (m == m_max || tb_pc < tb->tpc2gpc[m + 2]) {
245 return tb->tpc2gpc[m_max + 1];
H A Dexec.c1269 int m_min, m_max, m; local
1280 m_max = nb_tbs - 1;
1281 while (m_min <= m_max) {
1282 m = (m_min + m_max) >> 1;
1288 m_max = m - 1;
1293 return &tbs[m_max];
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathFunctions.cpp63 int m_max; member in class:WebCore::XPath::Interval
265 : m_min(Inf), m_max(Inf)
270 : m_min(value), m_max(value)
275 : m_min(min), m_max(max)
281 if (m_min == Inf && m_max == Inf)
285 return value <= m_max;
287 if (m_max == Inf)
290 return value >= m_min && value <= m_max;
/external/qemu/tcg/
H A Dtcg.c828 int m, m_min, m_max; local
840 m_max = s->nb_helpers - 1;
841 while (m_min <= m_max) {
842 m = (m_min + m_max) >> 1;
848 m_max = m - 1;
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DCompositorAnimations.cpp225 if (frames[timeIndex]->offset() != segment.m_min || frames[timeIndex + 1]->offset() != segment.m_max)
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 400 milliseconds