Home
last modified time | relevance | path

Searched refs:ssemax (Results 1 – 4 of 4) sorted by relevance

/dports/graphics/plotutils/plotutils-2.6/ode/
H A Dstperr.c19 static double ssemax, abemax, acemax; variable
28 ssemax = abemax = acemax = 0.0; in maxerr()
31 if (ssemax < sp->sy_sserr) in maxerr()
33 ssemax = sp->sy_sserr; in maxerr()
59 if (ssemax <= ssmax && abemax <= abmax && acemax <= acmax) in hierror()
65 if (ssemax > ssmax) in hierror()
86 if (ssemax < ssmin || abemax < abmin) in lowerror()
/dports/graphics/appleseed/appleseed-2.1.0-beta/src/appleseed/foundation/math/intersection/
H A Drayaabb.h144 const T tmin = ssemax(zl1, ssemax(yl1, ssemax(xl1, ray.m_tmin))); in intersect()
243 const T tmin = ssemax(zl1, ssemax(yl1, ssemax(xl1, ray.m_tmin))); in intersect()
249 tmin_out = ssemax(ray.m_tmin, tmin); in intersect()
270 const T tmin = ssemax(zl1, ssemax(yl1, ssemax(xl1, ray.m_tmin))); in intersect()
276 tmin_out = ssemax(ray.m_tmin, tmin); in intersect()
298 const T tmin = ssemax(zl1, ssemax(yl1, ssemax(xl1, ray.m_tmin))); in intersect()
304 tmin_out = ssemax(ray.m_tmin, tmin); in intersect()
327 const T tmin = ssemax(zl1, ssemax(yl1, ssemax(xl1, ray.m_tmin))); in clip()
333 ray.m_tmin = ssemax(ray.m_tmin, tmin); in clip()
/dports/graphics/appleseed/appleseed-2.1.0-beta/src/appleseed/foundation/math/
H A Dminmax.h98 T ssemax(const T a, const T b);
177 inline T ssemax(const T a, const T b) in ssemax() function
/dports/graphics/appleseed/appleseed-2.1.0-beta/src/appleseed/foundation/meta/tests/
H A Dtest_minmax.cpp160 const UInt obtained_max = binary_cast<UInt>(ssemax(a, b)); in TEST_SUITE()