HomeSort by relevance Sort by last modified time
    Searched refs:m_min (Results 1 - 7 of 7) 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/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()-1 : 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/qemu/memcheck/
memcheck_common.h 379 int m_min = 0; local
385 while (m_min <= m_max) {
386 const int m = (m_min + m_max) >> 1;
394 m_min = m + 1;
411 int m_min; local
429 m_min = 0;
431 while (m_min <= m_max) {
432 const int m = (m_min + m_max) >> 1;
440 m_min = m + 1;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathFunctions.cpp 62 int m_min; 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)
284 if (m_min == Inf)
288 return value >= m_min;
290 return value >= m_min && value <= m_max;
  /external/qemu/
exec-all.h 229 unsigned int m_min = 0; local
235 while (m_min <= m_max) {
236 const unsigned int m = ((m_min + m_max) >> 1) & ~1;
242 m_min = m + 2;
exec.c 1269 int m_min, m_max, m; local
    [all...]
  /external/qemu/tcg/
tcg.c 828 int m, m_min, m_max; local
839 m_min = 0;
841 while (m_min <= m_max) {
842 m = (m_min + m_max) >> 1;
850 m_min = m + 1;
    [all...]

Completed in 553 milliseconds