Searched refs:m_min (Results 1 – 7 of 7) sorted by relevance
/external/eigen/Eigen/src/Eigen2Support/Geometry/ |
D | AlignedBox.h | 41 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() 53 …inline int dim() const { return AmbientDimAtCompileTime==Dynamic ? m_min.size()-1 : AmbientDimAtCo… in dim() 56 inline bool isNull() const { return (m_min.cwise() > m_max).any(); } in isNull() 61 m_min.setConstant( (std::numeric_limits<Scalar>::max)()); in setNull() 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(); } in contains() 80 { return (m_min.cwise()<=(b.min)()).all() && ((b.max)().cwise()<=m_max).all(); } in contains() [all …]
|
/external/eigen/Eigen/src/Geometry/ |
D | AlignedBox.h | 63 inline explicit AlignedBox(Index _dim) : m_min(_dim), m_max(_dim) in AlignedBox() 68 …inline AlignedBox(const OtherVectorType1& _min, const OtherVectorType2& _max) : m_min(_min), m_max… in AlignedBox() 75 m_min = p; in AlignedBox() 82 …inline Index dim() const { return AmbientDimAtCompileTime==Dynamic ? m_min.size()-1 : Index(Ambien… in dim() 91 inline bool isEmpty() const { return (m_min.array() > m_max.array()).any(); } in isEmpty() 96 m_min.setConstant( ScalarTraits::highest() ); in setEmpty() 101 inline const VectorType& (min)() const { return m_min; } 103 inline VectorType& (min)() { return m_min; } 113 { return (m_min+m_max)/2; } in center() 120 { return m_max - m_min; } in sizes() [all …]
|
/external/qemu/memcheck/ |
D | memcheck_common.h | 379 int m_min = 0; in addrarray_check() local 385 while (m_min <= m_max) { in addrarray_check() 386 const int m = (m_min + m_max) >> 1; in addrarray_check() 394 m_min = m + 1; in addrarray_check() 411 int m_min; in addrarray_add() local 429 m_min = 0; in addrarray_add() 431 while (m_min <= m_max) { in addrarray_add() 432 const int m = (m_min + m_max) >> 1; in addrarray_add() 440 m_min = m + 1; in addrarray_add()
|
/external/webkit/Source/WebCore/xml/ |
D | XPathFunctions.cpp | 64 int m_min; member in WebCore::XPath::Interval 267 : m_min(Inf), m_max(Inf) in DEFINE_FUNCTION_CREATOR() 272 : m_min(value), m_max(value) in Interval() 277 : m_min(min), m_max(max) in Interval() 283 if (m_min == Inf && m_max == Inf) in contains() 286 if (m_min == Inf) in contains() 290 return value >= m_min; in contains() 292 return value >= m_min && value <= m_max; in contains()
|
/external/qemu/ |
D | exec-all.h | 229 unsigned int m_min = 0; in tb_search_guest_pc_from_tb_pc() local 235 while (m_min <= m_max) { in tb_search_guest_pc_from_tb_pc() 236 const unsigned int m = ((m_min + m_max) >> 1) & ~1; in tb_search_guest_pc_from_tb_pc() 242 m_min = m + 2; in tb_search_guest_pc_from_tb_pc()
|
D | exec.c | 1269 int m_min, m_max, m; in tb_find_pc() local 1279 m_min = 0; in tb_find_pc() 1281 while (m_min <= m_max) { in tb_find_pc() 1282 m = (m_min + m_max) >> 1; in tb_find_pc() 1290 m_min = m + 1; in tb_find_pc()
|
/external/qemu/tcg/ |
D | tcg.c | 828 int m, m_min, m_max; in tcg_find_helper() local 839 m_min = 0; in tcg_find_helper() 841 while (m_min <= m_max) { in tcg_find_helper() 842 m = (m_min + m_max) >> 1; in tcg_find_helper() 850 m_min = m + 1; in tcg_find_helper()
|