Home
last modified time | relevance | path

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

12345678910>>...64

/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/include/
H A Dtinterval.h43 m_max = max; in TInterval()
50 m_max = w.m_max; in TInterval()
57 m_max = w.m_max;
74 return TInterval(m_min + w.m_min, m_max + w.m_max);
80 return TInterval(m_min - w.m_max, m_max - w.m_min);
90 value[3] = m_max * w.m_max;
110 value[3] = m_max / w.m_max;
124 return (m_min == w.m_min && m_max == w.m_max);
167 m_max = max; in setMax()
255 double b = w.m_max * w.m_max; in square()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/xmlpatterns/type/
H A Dqcardinality_p.h247 return m_max == -1 || m_max > 1; in allowsMany()
291 return m_max >= other.m_max; in isMatch()
353 return m_min > 0 && (m_max == -1 || m_max >= 1); in isOneOrMore()
392 if(m_max == -1 || other.m_max == -1)
411 m_max = qMax(m_max, other.m_max);
451 if(m_max == -1 || other.m_max == -1)
471 m_max += other.m_max;
486 if(m_max == -1 || other.m_max == -1)
500 m_max = other.m_max;
515 m_max == other.m_max;
[all …]
/dports/textproc/qt5-xmlpatterns/kde-qtxmlpatterns-5.15.2p2/src/xmlpatterns/type/
H A Dqcardinality_p.h243 return m_max == -1 || m_max > 1; in allowsMany()
287 return m_max >= other.m_max; in isMatch()
349 return m_min > 0 && (m_max == -1 || m_max >= 1); in isOneOrMore()
388 if(m_max == -1 || other.m_max == -1)
407 m_max = qMax(m_max, other.m_max);
447 if(m_max == -1 || other.m_max == -1)
467 m_max += other.m_max;
482 if(m_max == -1 || other.m_max == -1)
496 m_max = other.m_max;
511 m_max == other.m_max;
[all …]
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/3d-viewer/3d_rendering/raytracing/shapes3D/
H A Dbbox_3d_ray.cpp85 || ( aRay.jbyk * m_max.z - m_max.y + aRay.c_zy > 0 ) in Intersect()
88 || ( aRay.ibyk * m_max.z - m_max.x + aRay.c_zx > 0 ) ) in Intersect()
111 || ( aRay.ibyj * m_max.y - m_max.x + aRay.c_yx > 0 ) in Intersect()
113 || ( aRay.kbyj * m_max.y - m_max.z + aRay.c_yz > 0 ) in Intersect()
138 || ( aRay.ibyj * m_max.y - m_max.x + aRay.c_yx > 0 ) in Intersect()
164 || ( aRay.jbyi * m_max.x - m_max.y + aRay.c_xy > 0 ) in Intersect()
168 || ( aRay.kbyi * m_max.x - m_max.z + aRay.c_xz > 0 ) in Intersect()
191 || ( aRay.jbyi * m_max.x - m_max.y + aRay.c_xy > 0 ) in Intersect()
193 || ( aRay.jbyk * m_max.z - m_max.y + aRay.c_zy > 0 ) in Intersect()
221 || ( aRay.kbyj * m_max.y - m_max.z + aRay.c_yz > 0 ) in Intersect()
[all …]
H A Dbbox_3d.cpp110 m_max.x = fmaxf( m_max.x, aPoint.x ); in Union()
126 m_max.x = fmax( m_max.x, aBBox.m_max.x ); in Union()
127 m_max.y = fmax( m_max.y, aBBox.m_max.y ); in Union()
128 m_max.z = fmax( m_max.z, aBBox.m_max.z ); in Union()
200 m_max.x = NextFloatUp( m_max.x ); in ScaleNextUp()
201 m_max.y = NextFloatUp( m_max.y ); in ScaleNextUp()
202 m_max.z = NextFloatUp( m_max.z ); in ScaleNextUp()
212 m_max.x = NextFloatDown( m_max.x ); in ScaleNextDown()
213 m_max.y = NextFloatDown( m_max.y ); in ScaleNextDown()
214 m_max.z = NextFloatDown( m_max.z ); in ScaleNextDown()
[all …]
/dports/math/gambit/gambit-16.0.1/src/labenski/include/wx/wxthings/
H A Drange.h55 inline void SwapMinMax() { register int temp=m_min; m_min=m_max; m_max=temp; } in SwapMinMax()
63 { return (r.m_min >= m_min) && (r.m_max <= m_max); } in Contains()
70 { return wxRangeInt(wxMax(m_min, r.m_min), wxMin(m_max, r.m_max)); } in Intersect()
73 { return wxRangeInt(wxMin(m_min, r.m_min), wxMax(m_max, r.m_max)); } in Union()
105 …=(const wxRangeInt& r) { if(r.m_min<m_min) m_min=r.m_min; if(r.m_max>m_max) m_max=r.m_max; return …
108 …=(const wxRangeInt& r) { if(r.m_min>m_min) m_min=r.m_min; if(r.m_max<m_max) m_max=r.m_max; return …
116 int m_min, m_max; variable
214 { return (r.m_min>=m_min)&&(r.m_max<=m_max); } in Contains()
221 { return wxRangeDouble(wxMax(m_min, r.m_min), wxMin(m_max, r.m_max)); } in Intersect()
250 …onst wxRangeDouble& r) { if(r.m_min<m_min) m_min=r.m_min; if(r.m_max>m_max) m_max=r.m_max; return …
[all …]
/dports/devel/bullet/bullet3-3.21/src/BulletCollision/Gimpact/
H A Dgim_box_collision.h279 m_max[0] = other.m_max[0] + margin; in copy_with_margin()
280 m_max[1] = other.m_max[1] + margin; in copy_with_margin()
281 m_max[2] = other.m_max[2] + margin; in copy_with_margin()
344 m_max[0] = GIM_MAX(m_max[0], box.m_max[0]); in merge()
345 m_max[1] = GIM_MAX(m_max[1], box.m_max[1]); in merge()
346 m_max[2] = GIM_MAX(m_max[2], box.m_max[2]); in merge()
357 m_max[0] = GIM_MAX(m_max[0], point[0]); in merge_point()
358 m_max[1] = GIM_MAX(m_max[1], point[1]); in merge_point()
376 intersection.m_max[0] = GIM_MIN(other.m_max[0], m_max[0]); in find_intersection()
377 intersection.m_max[1] = GIM_MIN(other.m_max[1], m_max[1]); in find_intersection()
[all …]
H A DbtBoxCollision.h299 m_max[0] = other.m_max[0] + margin; in ATTRIBUTE_ALIGNED16()
300 m_max[1] = other.m_max[1] + margin; in ATTRIBUTE_ALIGNED16()
301 m_max[2] = other.m_max[2] + margin; in ATTRIBUTE_ALIGNED16()
380 m_max[0] = BT_MAX(m_max[0], box.m_max[0]); in ATTRIBUTE_ALIGNED16()
381 m_max[1] = BT_MAX(m_max[1], box.m_max[1]); in ATTRIBUTE_ALIGNED16()
382 m_max[2] = BT_MAX(m_max[2], box.m_max[2]); in ATTRIBUTE_ALIGNED16()
393 m_max[0] = BT_MAX(m_max[0], point[0]); in ATTRIBUTE_ALIGNED16()
394 m_max[1] = BT_MAX(m_max[1], point[1]); in ATTRIBUTE_ALIGNED16()
412 intersection.m_max[0] = BT_MIN(other.m_max[0], m_max[0]); in ATTRIBUTE_ALIGNED16()
413 intersection.m_max[1] = BT_MIN(other.m_max[1], m_max[1]); in ATTRIBUTE_ALIGNED16()
[all …]
/dports/graphics/blender/blender-2.91.0/extern/bullet2/src/BulletCollision/Gimpact/
H A Dgim_box_collision.h279 m_max[0] = other.m_max[0] + margin; in copy_with_margin()
280 m_max[1] = other.m_max[1] + margin; in copy_with_margin()
281 m_max[2] = other.m_max[2] + margin; in copy_with_margin()
344 m_max[0] = GIM_MAX(m_max[0], box.m_max[0]); in merge()
345 m_max[1] = GIM_MAX(m_max[1], box.m_max[1]); in merge()
346 m_max[2] = GIM_MAX(m_max[2], box.m_max[2]); in merge()
357 m_max[0] = GIM_MAX(m_max[0], point[0]); in merge_point()
358 m_max[1] = GIM_MAX(m_max[1], point[1]); in merge_point()
376 intersection.m_max[0] = GIM_MIN(other.m_max[0], m_max[0]); in find_intersection()
377 intersection.m_max[1] = GIM_MIN(other.m_max[1], m_max[1]); in find_intersection()
[all …]
H A DbtBoxCollision.h299 m_max[0] = other.m_max[0] + margin; in ATTRIBUTE_ALIGNED16()
300 m_max[1] = other.m_max[1] + margin; in ATTRIBUTE_ALIGNED16()
301 m_max[2] = other.m_max[2] + margin; in ATTRIBUTE_ALIGNED16()
380 m_max[0] = BT_MAX(m_max[0], box.m_max[0]); in ATTRIBUTE_ALIGNED16()
381 m_max[1] = BT_MAX(m_max[1], box.m_max[1]); in ATTRIBUTE_ALIGNED16()
382 m_max[2] = BT_MAX(m_max[2], box.m_max[2]); in ATTRIBUTE_ALIGNED16()
393 m_max[0] = BT_MAX(m_max[0], point[0]); in ATTRIBUTE_ALIGNED16()
394 m_max[1] = BT_MAX(m_max[1], point[1]); in ATTRIBUTE_ALIGNED16()
412 intersection.m_max[0] = BT_MIN(other.m_max[0], m_max[0]); in ATTRIBUTE_ALIGNED16()
413 intersection.m_max[1] = BT_MIN(other.m_max[1], m_max[1]); in ATTRIBUTE_ALIGNED16()
[all …]
/dports/games/supertuxkart/SuperTuxKart-1.2-src/lib/bullet/src/BulletCollision/Gimpact/
H A Dgim_box_collision.h244 m_min(other.m_min),m_max(other.m_max) in GIM_AABB()
249 m_min(other.m_min),m_max(other.m_max) in GIM_AABB()
285 m_max[0] = other.m_max[0] + margin; in copy_with_margin()
286 m_max[1] = other.m_max[1] + margin; in copy_with_margin()
287 m_max[2] = other.m_max[2] + margin; in copy_with_margin()
350 m_max[0] = GIM_MAX(m_max[0],box.m_max[0]); in merge()
351 m_max[1] = GIM_MAX(m_max[1],box.m_max[1]); in merge()
352 m_max[2] = GIM_MAX(m_max[2],box.m_max[2]); in merge()
382 intersection.m_max[0] = GIM_MIN(other.m_max[0],m_max[0]); in find_intersection()
383 intersection.m_max[1] = GIM_MIN(other.m_max[1],m_max[1]); in find_intersection()
[all …]
H A DbtBoxCollision.h276 m_min(other.m_min),m_max(other.m_max) in ATTRIBUTE_ALIGNED16()
281 m_min(other.m_min),m_max(other.m_max) in ATTRIBUTE_ALIGNED16()
317 m_max[0] = other.m_max[0] + margin; in ATTRIBUTE_ALIGNED16()
318 m_max[1] = other.m_max[1] + margin; in ATTRIBUTE_ALIGNED16()
319 m_max[2] = other.m_max[2] + margin; in ATTRIBUTE_ALIGNED16()
399 m_max[0] = BT_MAX(m_max[0],box.m_max[0]); in ATTRIBUTE_ALIGNED16()
400 m_max[1] = BT_MAX(m_max[1],box.m_max[1]); in ATTRIBUTE_ALIGNED16()
401 m_max[2] = BT_MAX(m_max[2],box.m_max[2]); in ATTRIBUTE_ALIGNED16()
431 intersection.m_max[0] = BT_MIN(other.m_max[0],m_max[0]); in ATTRIBUTE_ALIGNED16()
432 intersection.m_max[1] = BT_MIN(other.m_max[1],m_max[1]); in ATTRIBUTE_ALIGNED16()
[all …]
/dports/games/critterding/critterding-beta12/src/utils/bullet/BulletCollision/Gimpact/
H A Dgim_box_collision.h244 m_min(other.m_min),m_max(other.m_max) in GIM_AABB()
249 m_min(other.m_min),m_max(other.m_max) in GIM_AABB()
285 m_max[0] = other.m_max[0] + margin; in copy_with_margin()
286 m_max[1] = other.m_max[1] + margin; in copy_with_margin()
287 m_max[2] = other.m_max[2] + margin; in copy_with_margin()
350 m_max[0] = GIM_MAX(m_max[0],box.m_max[0]); in merge()
351 m_max[1] = GIM_MAX(m_max[1],box.m_max[1]); in merge()
352 m_max[2] = GIM_MAX(m_max[2],box.m_max[2]); in merge()
382 intersection.m_max[0] = GIM_MIN(other.m_max[0],m_max[0]); in find_intersection()
383 intersection.m_max[1] = GIM_MIN(other.m_max[1],m_max[1]); in find_intersection()
[all …]
H A DbtBoxCollision.h276 m_min(other.m_min),m_max(other.m_max) in ATTRIBUTE_ALIGNED16()
281 m_min(other.m_min),m_max(other.m_max) in ATTRIBUTE_ALIGNED16()
317 m_max[0] = other.m_max[0] + margin; in ATTRIBUTE_ALIGNED16()
318 m_max[1] = other.m_max[1] + margin; in ATTRIBUTE_ALIGNED16()
319 m_max[2] = other.m_max[2] + margin; in ATTRIBUTE_ALIGNED16()
399 m_max[0] = BT_MAX(m_max[0],box.m_max[0]); in ATTRIBUTE_ALIGNED16()
400 m_max[1] = BT_MAX(m_max[1],box.m_max[1]); in ATTRIBUTE_ALIGNED16()
401 m_max[2] = BT_MAX(m_max[2],box.m_max[2]); in ATTRIBUTE_ALIGNED16()
431 intersection.m_max[0] = BT_MIN(other.m_max[0],m_max[0]); in ATTRIBUTE_ALIGNED16()
432 intersection.m_max[1] = BT_MIN(other.m_max[1],m_max[1]); in ATTRIBUTE_ALIGNED16()
[all …]
/dports/devel/godot/godot-3.2.3-stable/thirdparty/bullet/BulletCollision/Gimpact/
H A Dgim_box_collision.h279 m_max[0] = other.m_max[0] + margin; in copy_with_margin()
280 m_max[1] = other.m_max[1] + margin; in copy_with_margin()
281 m_max[2] = other.m_max[2] + margin; in copy_with_margin()
344 m_max[0] = GIM_MAX(m_max[0], box.m_max[0]); in merge()
345 m_max[1] = GIM_MAX(m_max[1], box.m_max[1]); in merge()
346 m_max[2] = GIM_MAX(m_max[2], box.m_max[2]); in merge()
357 m_max[0] = GIM_MAX(m_max[0], point[0]); in merge_point()
358 m_max[1] = GIM_MAX(m_max[1], point[1]); in merge_point()
376 intersection.m_max[0] = GIM_MIN(other.m_max[0], m_max[0]); in find_intersection()
377 intersection.m_max[1] = GIM_MIN(other.m_max[1], m_max[1]); in find_intersection()
[all …]
H A DbtBoxCollision.h299 m_max[0] = other.m_max[0] + margin; in ATTRIBUTE_ALIGNED16()
300 m_max[1] = other.m_max[1] + margin; in ATTRIBUTE_ALIGNED16()
301 m_max[2] = other.m_max[2] + margin; in ATTRIBUTE_ALIGNED16()
380 m_max[0] = BT_MAX(m_max[0], box.m_max[0]); in ATTRIBUTE_ALIGNED16()
381 m_max[1] = BT_MAX(m_max[1], box.m_max[1]); in ATTRIBUTE_ALIGNED16()
382 m_max[2] = BT_MAX(m_max[2], box.m_max[2]); in ATTRIBUTE_ALIGNED16()
393 m_max[0] = BT_MAX(m_max[0], point[0]); in ATTRIBUTE_ALIGNED16()
394 m_max[1] = BT_MAX(m_max[1], point[1]); in ATTRIBUTE_ALIGNED16()
412 intersection.m_max[0] = BT_MIN(other.m_max[0], m_max[0]); in ATTRIBUTE_ALIGNED16()
413 intersection.m_max[1] = BT_MIN(other.m_max[1], m_max[1]); in ATTRIBUTE_ALIGNED16()
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/bullet/BulletCollision/Gimpact/
H A Dgim_box_collision.h279 m_max[0] = other.m_max[0] + margin; in copy_with_margin()
280 m_max[1] = other.m_max[1] + margin; in copy_with_margin()
281 m_max[2] = other.m_max[2] + margin; in copy_with_margin()
344 m_max[0] = GIM_MAX(m_max[0], box.m_max[0]); in merge()
345 m_max[1] = GIM_MAX(m_max[1], box.m_max[1]); in merge()
346 m_max[2] = GIM_MAX(m_max[2], box.m_max[2]); in merge()
357 m_max[0] = GIM_MAX(m_max[0], point[0]); in merge_point()
358 m_max[1] = GIM_MAX(m_max[1], point[1]); in merge_point()
376 intersection.m_max[0] = GIM_MIN(other.m_max[0], m_max[0]); in find_intersection()
377 intersection.m_max[1] = GIM_MIN(other.m_max[1], m_max[1]); in find_intersection()
[all …]
/dports/science/chrono/chrono-7.0.1/src/chrono/collision/bullet/BulletCollision/Gimpact/
H A Dgim_box_collision.h279 m_max[0] = other.m_max[0] + margin; in copy_with_margin()
280 m_max[1] = other.m_max[1] + margin; in copy_with_margin()
281 m_max[2] = other.m_max[2] + margin; in copy_with_margin()
344 m_max[0] = GIM_MAX(m_max[0], box.m_max[0]); in merge()
345 m_max[1] = GIM_MAX(m_max[1], box.m_max[1]); in merge()
346 m_max[2] = GIM_MAX(m_max[2], box.m_max[2]); in merge()
357 m_max[0] = GIM_MAX(m_max[0], point[0]); in merge_point()
358 m_max[1] = GIM_MAX(m_max[1], point[1]); in merge_point()
376 intersection.m_max[0] = GIM_MIN(other.m_max[0], m_max[0]); in find_intersection()
377 intersection.m_max[1] = GIM_MIN(other.m_max[1], m_max[1]); in find_intersection()
[all …]
/dports/science/chrono/chrono-7.0.1/src/chrono/collision/gimpact/GIMPACT/core/
H A Dgim_box_collision.h279 m_max[0] = other.m_max[0] + margin; in copy_with_margin()
280 m_max[1] = other.m_max[1] + margin; in copy_with_margin()
281 m_max[2] = other.m_max[2] + margin; in copy_with_margin()
344 m_max[0] = GIM_MAX(m_max[0], box.m_max[0]); in merge()
345 m_max[1] = GIM_MAX(m_max[1], box.m_max[1]); in merge()
346 m_max[2] = GIM_MAX(m_max[2], box.m_max[2]); in merge()
357 m_max[0] = GIM_MAX(m_max[0], point[0]); in merge_point()
358 m_max[1] = GIM_MAX(m_max[1], point[1]); in merge_point()
376 intersection.m_max[0] = GIM_MIN(other.m_max[0], m_max[0]); in find_intersection()
377 intersection.m_max[1] = GIM_MIN(other.m_max[1], m_max[1]); in find_intersection()
[all …]
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/Bullet/src/BulletCollision/Gimpact/
H A Dgim_box_collision.h242 m_min(other.m_min),m_max(other.m_max) in GIM_AABB()
247 m_min(other.m_min),m_max(other.m_max) in GIM_AABB()
283 m_max[0] = other.m_max[0] + margin; in copy_with_margin()
284 m_max[1] = other.m_max[1] + margin; in copy_with_margin()
285 m_max[2] = other.m_max[2] + margin; in copy_with_margin()
348 m_max[0] = GIM_MAX(m_max[0],box.m_max[0]); in merge()
349 m_max[1] = GIM_MAX(m_max[1],box.m_max[1]); in merge()
350 m_max[2] = GIM_MAX(m_max[2],box.m_max[2]); in merge()
380 intersection.m_max[0] = GIM_MIN(other.m_max[0],m_max[0]); in find_intersection()
381 intersection.m_max[1] = GIM_MIN(other.m_max[1],m_max[1]); in find_intersection()
[all …]
/dports/devel/py-bullet3/bullet3-3.21/src/BulletCollision/Gimpact/
H A Dgim_box_collision.h279 m_max[0] = other.m_max[0] + margin; in copy_with_margin()
280 m_max[1] = other.m_max[1] + margin; in copy_with_margin()
281 m_max[2] = other.m_max[2] + margin; in copy_with_margin()
344 m_max[0] = GIM_MAX(m_max[0], box.m_max[0]); in merge()
345 m_max[1] = GIM_MAX(m_max[1], box.m_max[1]); in merge()
346 m_max[2] = GIM_MAX(m_max[2], box.m_max[2]); in merge()
357 m_max[0] = GIM_MAX(m_max[0], point[0]); in merge_point()
358 m_max[1] = GIM_MAX(m_max[1], point[1]); in merge_point()
376 intersection.m_max[0] = GIM_MIN(other.m_max[0], m_max[0]); in find_intersection()
377 intersection.m_max[1] = GIM_MIN(other.m_max[1], m_max[1]); in find_intersection()
[all …]
/dports/games/OpenTomb/OpenTomb-win32-2018-02-03_alpha/extern/bullet/BulletCollision/Gimpact/
H A Dgim_box_collision.h242 m_min(other.m_min),m_max(other.m_max) in GIM_AABB()
247 m_min(other.m_min),m_max(other.m_max) in GIM_AABB()
283 m_max[0] = other.m_max[0] + margin; in copy_with_margin()
284 m_max[1] = other.m_max[1] + margin; in copy_with_margin()
285 m_max[2] = other.m_max[2] + margin; in copy_with_margin()
348 m_max[0] = GIM_MAX(m_max[0],box.m_max[0]); in merge()
349 m_max[1] = GIM_MAX(m_max[1],box.m_max[1]); in merge()
350 m_max[2] = GIM_MAX(m_max[2],box.m_max[2]); in merge()
380 intersection.m_max[0] = GIM_MIN(other.m_max[0],m_max[0]); in find_intersection()
381 intersection.m_max[1] = GIM_MIN(other.m_max[1],m_max[1]); in find_intersection()
[all …]
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/bullet/src/BulletCollision/Gimpact/
H A Dgim_box_collision.h244 m_min(other.m_min),m_max(other.m_max) in GIM_AABB()
249 m_min(other.m_min),m_max(other.m_max) in GIM_AABB()
285 m_max[0] = other.m_max[0] + margin; in copy_with_margin()
286 m_max[1] = other.m_max[1] + margin; in copy_with_margin()
287 m_max[2] = other.m_max[2] + margin; in copy_with_margin()
350 m_max[0] = GIM_MAX(m_max[0],box.m_max[0]); in merge()
351 m_max[1] = GIM_MAX(m_max[1],box.m_max[1]); in merge()
352 m_max[2] = GIM_MAX(m_max[2],box.m_max[2]); in merge()
382 intersection.m_max[0] = GIM_MIN(other.m_max[0],m_max[0]); in find_intersection()
383 intersection.m_max[1] = GIM_MIN(other.m_max[1],m_max[1]); in find_intersection()
[all …]
/dports/science/chrono/chrono-7.0.1/src/chrono/collision/gimpact/GIMPACT/Bullet/
H A Dgim_box_collision.h279 m_max[0] = other.m_max[0] + margin; in copy_with_margin()
280 m_max[1] = other.m_max[1] + margin; in copy_with_margin()
281 m_max[2] = other.m_max[2] + margin; in copy_with_margin()
344 m_max[0] = GIM_MAX(m_max[0], box.m_max[0]); in merge()
345 m_max[1] = GIM_MAX(m_max[1], box.m_max[1]); in merge()
346 m_max[2] = GIM_MAX(m_max[2], box.m_max[2]); in merge()
357 m_max[0] = GIM_MAX(m_max[0], point[0]); in merge_point()
358 m_max[1] = GIM_MAX(m_max[1], point[1]); in merge_point()
376 intersection.m_max[0] = GIM_MIN(other.m_max[0], m_max[0]); in find_intersection()
377 intersection.m_max[1] = GIM_MIN(other.m_max[1], m_max[1]); in find_intersection()
[all …]
/dports/math/gambit/gambit-16.0.1/src/labenski/src/
H A Drange.cpp70 if (r.m_max > m_max) { m_max = r.m_max; added = true; } in Combine()
85 if (r.m_max >= m_max) in Delete()
95 if (r.m_max >= m_max) in Delete()
102 *right = wxRangeInt(r.m_max + 1, m_max); in Delete()
325 if (m_ranges[i].m_max <= range.m_max) in BoundRanges()
336 m_ranges[i].m_max = range.m_max; in BoundRanges()
369 if (r.m_max > m_max) { m_max = r.m_max; added = true; } in Combine()
384 if (r.m_max >= m_max) in Delete()
394 if (r.m_max >= m_max) in Delete()
621 if (m_ranges[i].m_max <= range.m_max) in BoundRanges()
[all …]

12345678910>>...64