Home
last modified time | relevance | path

Searched refs:m_min (Results 1 – 10 of 10) 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()
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/
DAlignedBox.h63 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/
Dmemcheck_common.h379 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/chromium_org/third_party/WebKit/Source/core/platform/animation/
DTimingFunction.h266 : m_min(min) in Segment()
278 double scaleToLocal(double x) const { return (x - m_min) / (m_max - m_min); } in scaleToLocal()
279 double scaleFromLocal(double x) const { return blend(m_min, m_max, x); } in scaleFromLocal()
281 double m_min; variable
DTimingFunctionTestHelper.cpp48 *os << "[" << segment.m_min << " -> " << segment.m_max << "]"; in PrintTo()
80 if ((lhs.m_min != rhs.m_min) || (lhs.m_max != rhs.m_max)) in equals()
/external/chromium_org/third_party/WebKit/Source/core/xml/
DXPathFunctions.cpp62 int m_min; member in WebCore::XPath::Interval
265 : m_min(Inf), m_max(Inf) in DEFINE_FUNCTION_CREATOR()
270 : m_min(value), m_max(value) in Interval()
275 : m_min(min), m_max(max) in Interval()
281 if (m_min == Inf && m_max == Inf) in contains()
284 if (m_min == Inf) in contains()
288 return value >= m_min; in contains()
290 return value >= m_min && value <= m_max; in contains()
/external/qemu/
Dexec-all.h229 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()
Dexec.c1269 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/chromium_org/third_party/WebKit/Source/core/animation/
DCompositorAnimations.cpp115 reversed->appendSegment(1 - timefunc->m_segments[index].m_min, rtf.get()); in reverse()
225 …if (frames[timeIndex]->offset() != segment.m_min || frames[timeIndex + 1]->offset() != segment.m_m… in isCandidateForAnimationOnCompositor()
/external/qemu/tcg/
Dtcg.c828 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()