limits            549 3rdparty/openexr/Imath/ImathBox.h     if (min[0] != limits<T>::min() || max[0] != limits<T>::max() ||
limits            550 3rdparty/openexr/Imath/ImathBox.h         min[1] != limits<T>::min() || max[1] != limits<T>::max())
limits            807 3rdparty/openexr/Imath/ImathBox.h     if (min[0] != limits<T>::min() || max[0] != limits<T>::max() ||
limits            808 3rdparty/openexr/Imath/ImathBox.h         min[1] != limits<T>::min() || max[1] != limits<T>::max() ||
limits            809 3rdparty/openexr/Imath/ImathBox.h         min[2] != limits<T>::min() || max[2] != limits<T>::max())
limits            491 3rdparty/openexr/Imath/ImathBoxAlgo.h     const T TMAX = limits<T>::max();
limits            785 3rdparty/openexr/Imath/ImathBoxAlgo.h     const T TMAX = limits<T>::max();
limits            239 3rdparty/openexr/Imath/ImathColor.h     static T		baseTypeMin()		{return limits<T>::min();}
limits            240 3rdparty/openexr/Imath/ImathColor.h     static T		baseTypeMax()		{return limits<T>::max();}
limits            241 3rdparty/openexr/Imath/ImathColor.h     static T		baseTypeSmallest()	{return limits<T>::smallest();}
limits            242 3rdparty/openexr/Imath/ImathColor.h     static T		baseTypeEpsilon()	{return limits<T>::epsilon();}
limits             74 3rdparty/openexr/Imath/ImathColorAlgo.h     if ( limits<T>::isIntegral() )
limits             76 3rdparty/openexr/Imath/ImathColorAlgo.h     Vec3<double> v = Vec3<double>(hsv.x / double(limits<T>::max()),
limits             77 3rdparty/openexr/Imath/ImathColorAlgo.h                       hsv.y / double(limits<T>::max()),
limits             78 3rdparty/openexr/Imath/ImathColorAlgo.h                       hsv.z / double(limits<T>::max()));
limits             80 3rdparty/openexr/Imath/ImathColorAlgo.h     return Vec3<T>((T) (c.x * limits<T>::max()),
limits             81 3rdparty/openexr/Imath/ImathColorAlgo.h                (T) (c.y * limits<T>::max()),
limits             82 3rdparty/openexr/Imath/ImathColorAlgo.h                (T) (c.z * limits<T>::max()));
limits             97 3rdparty/openexr/Imath/ImathColorAlgo.h     if ( limits<T>::isIntegral() )
limits             99 3rdparty/openexr/Imath/ImathColorAlgo.h     Color4<double> v = Color4<double>(hsv.r / float(limits<T>::max()),
limits            100 3rdparty/openexr/Imath/ImathColorAlgo.h                       hsv.g / float(limits<T>::max()),
limits            101 3rdparty/openexr/Imath/ImathColorAlgo.h                       hsv.b / float(limits<T>::max()),
limits            102 3rdparty/openexr/Imath/ImathColorAlgo.h                       hsv.a / float(limits<T>::max()));
limits            104 3rdparty/openexr/Imath/ImathColorAlgo.h     return Color4<T>((T) (c.r * limits<T>::max()),
limits            105 3rdparty/openexr/Imath/ImathColorAlgo.h                          (T) (c.g * limits<T>::max()),
limits            106 3rdparty/openexr/Imath/ImathColorAlgo.h                          (T) (c.b * limits<T>::max()),
limits            107 3rdparty/openexr/Imath/ImathColorAlgo.h              (T) (c.a * limits<T>::max()));
limits            122 3rdparty/openexr/Imath/ImathColorAlgo.h     if ( limits<T>::isIntegral() )
limits            124 3rdparty/openexr/Imath/ImathColorAlgo.h     Vec3<double> v = Vec3<double>(rgb.x / double(limits<T>::max()),
limits            125 3rdparty/openexr/Imath/ImathColorAlgo.h                       rgb.y / double(limits<T>::max()),
limits            126 3rdparty/openexr/Imath/ImathColorAlgo.h                       rgb.z / double(limits<T>::max()));
limits            128 3rdparty/openexr/Imath/ImathColorAlgo.h     return Vec3<T>((T) (c.x * limits<T>::max()),
limits            129 3rdparty/openexr/Imath/ImathColorAlgo.h                (T) (c.y * limits<T>::max()),
limits            130 3rdparty/openexr/Imath/ImathColorAlgo.h                (T) (c.z * limits<T>::max()));
limits            145 3rdparty/openexr/Imath/ImathColorAlgo.h     if ( limits<T>::isIntegral() )
limits            147 3rdparty/openexr/Imath/ImathColorAlgo.h     Color4<double> v = Color4<double>(rgb.r / float(limits<T>::max()),
limits            148 3rdparty/openexr/Imath/ImathColorAlgo.h                       rgb.g / float(limits<T>::max()),
limits            149 3rdparty/openexr/Imath/ImathColorAlgo.h                       rgb.b / float(limits<T>::max()),
limits            150 3rdparty/openexr/Imath/ImathColorAlgo.h                       rgb.a / float(limits<T>::max()));
limits            152 3rdparty/openexr/Imath/ImathColorAlgo.h     return Color4<T>((T) (c.r * limits<T>::max()),
limits            153 3rdparty/openexr/Imath/ImathColorAlgo.h                          (T) (c.g * limits<T>::max()),
limits            154 3rdparty/openexr/Imath/ImathColorAlgo.h                          (T) (c.b * limits<T>::max()),
limits            155 3rdparty/openexr/Imath/ImathColorAlgo.h              (T) (c.a * limits<T>::max()));
limits            169 3rdparty/openexr/Imath/ImathColorAlgo.h     if ( limits<T>::isIntegral() )
limits            171 3rdparty/openexr/Imath/ImathColorAlgo.h     float x = c.x / float(limits<T>::max());
limits            172 3rdparty/openexr/Imath/ImathColorAlgo.h     float y = c.y / float(limits<T>::max());
limits            173 3rdparty/openexr/Imath/ImathColorAlgo.h     float z = c.z / float(limits<T>::max());
limits            188 3rdparty/openexr/Imath/ImathColorAlgo.h     if ( limits<T>::isIntegral() )
limits            190 3rdparty/openexr/Imath/ImathColorAlgo.h     float r = c.r / float(limits<T>::max());
limits            191 3rdparty/openexr/Imath/ImathColorAlgo.h     float g = c.g / float(limits<T>::max());
limits            192 3rdparty/openexr/Imath/ImathColorAlgo.h     float b = c.b / float(limits<T>::max());
limits            193 3rdparty/openexr/Imath/ImathColorAlgo.h     float a = c.a / float(limits<T>::max());
limits            215 3rdparty/openexr/Imath/ImathColorAlgo.h     if ( limits<T>::isIntegral() )
limits            217 3rdparty/openexr/Imath/ImathColorAlgo.h     T f = limits<T>::max() / ((PackedColor)0xFF);
limits            235 3rdparty/openexr/Imath/ImathColorAlgo.h     if ( limits<T>::isIntegral() )
limits            237 3rdparty/openexr/Imath/ImathColorAlgo.h     T f = limits<T>::max() / ((PackedColor)0xFF);
limits            346 3rdparty/openexr/Imath/ImathFrustum.h     abs(rightMinusLeft) > limits<T>::max() * abs(topMinusBottom))
limits            368 3rdparty/openexr/Imath/ImathFrustum.h      abs(rightPlusLeft) > limits<T>::max() * abs(rightMinusLeft)) ||
limits            370 3rdparty/openexr/Imath/ImathFrustum.h      abs(topPlusBottom) > limits<T>::max() * abs(topMinusBottom)) ||
limits            372 3rdparty/openexr/Imath/ImathFrustum.h      abs(farPlusNear) > limits<T>::max() * abs(farMinusNear)))
limits            385 3rdparty/openexr/Imath/ImathFrustum.h          2 > limits<T>::max() * abs(rightMinusLeft)) ||
limits            387 3rdparty/openexr/Imath/ImathFrustum.h          2 > limits<T>::max() * abs(topMinusBottom)) ||
limits            389 3rdparty/openexr/Imath/ImathFrustum.h          2 > limits<T>::max() * abs(farMinusNear)))
limits            412 3rdparty/openexr/Imath/ImathFrustum.h         abs(farTimesNear) > limits<T>::max() * abs(farMinusNear))
limits            423 3rdparty/openexr/Imath/ImathFrustum.h          abs(twoTimesNear) > limits<T>::max() * abs(rightMinusLeft)) ||
limits            425 3rdparty/openexr/Imath/ImathFrustum.h          abs(twoTimesNear) > limits<T>::max() * abs(topMinusBottom)))
limits            477 3rdparty/openexr/Imath/ImathFrustum.h      abs(leftPlusRight) > limits<T>::max() * abs(leftMinusRight)) ||
limits            479 3rdparty/openexr/Imath/ImathFrustum.h      abs(bottomPlusTop) > limits<T>::max() * abs(bottomMinusTop)))
limits            543 3rdparty/openexr/Imath/ImathFrustum.h         abs(farTimesNear) > limits<T>::max() * abs(farMinusNear))
limits            566 3rdparty/openexr/Imath/ImathFrustum.h         abs(farPlusNear) > limits<T>::max() * abs(farMinusNear))
limits            582 3rdparty/openexr/Imath/ImathFrustum.h         abs(farTimesNear) > limits<T>::max() * abs(depth))
limits            591 3rdparty/openexr/Imath/ImathFrustum.h         abs(farPlusNear) > limits<T>::max() * abs(farMinusNear))
limits            616 3rdparty/openexr/Imath/ImathFrustum.h     if (abs(p.z) > 1 || abs(-_nearPlane) < limits<T>::max() * abs(p.z))
limits            633 3rdparty/openexr/Imath/ImathFrustum.h     if (abs(-_nearPlane) > 1 || abs(p.z) < limits<T>::max() * abs(-_nearPlane))
limits            100 3rdparty/openexr/Imath/ImathFun.h     if (abs(d) > T(1) || abs(n) < limits<T>::max() * abs(d))
limits             53 3rdparty/openexr/Imath/ImathHalfLimits.h struct limits <half>
limits            155 3rdparty/openexr/Imath/ImathInterval.h     min = limits<T>::max();
limits            156 3rdparty/openexr/Imath/ImathInterval.h     max = limits<T>::min();
limits            133 3rdparty/openexr/Imath/ImathLimits.h struct limits <char>
limits            144 3rdparty/openexr/Imath/ImathLimits.h struct limits <signed char>
limits            155 3rdparty/openexr/Imath/ImathLimits.h struct limits <unsigned char>
limits            166 3rdparty/openexr/Imath/ImathLimits.h struct limits <short>
limits            177 3rdparty/openexr/Imath/ImathLimits.h struct limits <unsigned short>
limits            188 3rdparty/openexr/Imath/ImathLimits.h struct limits <int>
limits            199 3rdparty/openexr/Imath/ImathLimits.h struct limits <unsigned int>
limits            210 3rdparty/openexr/Imath/ImathLimits.h struct limits <long>
limits            221 3rdparty/openexr/Imath/ImathLimits.h struct limits <unsigned long>
limits            232 3rdparty/openexr/Imath/ImathLimits.h struct limits <float>
limits            243 3rdparty/openexr/Imath/ImathLimits.h struct limits <double>
limits            254 3rdparty/openexr/Imath/ImathLimits.h struct limits <long double>
limits            162 3rdparty/openexr/Imath/ImathLine.h     if (absNum >= absDenom * limits<T>::max())
limits            107 3rdparty/openexr/Imath/ImathLineAlgo.h     (abs (n1) < limits<T>::max() * absD &&
limits            108 3rdparty/openexr/Imath/ImathLineAlgo.h      abs (n2) < limits<T>::max() * absD))
limits            175 3rdparty/openexr/Imath/ImathLineAlgo.h     if (abs (nd) > 1 || abs (d) < limits<T>::max() * abs (nd))
limits            163 3rdparty/openexr/Imath/ImathMath.h     if (x * x < limits<T>::epsilon())
limits            404 3rdparty/openexr/Imath/ImathMatrix.h     static T            baseTypeMin()           {return limits<T>::min();}
limits            405 3rdparty/openexr/Imath/ImathMatrix.h     static T            baseTypeMax()           {return limits<T>::max();}
limits            406 3rdparty/openexr/Imath/ImathMatrix.h     static T            baseTypeSmallest()      {return limits<T>::smallest();}
limits            407 3rdparty/openexr/Imath/ImathMatrix.h     static T            baseTypeEpsilon()       {return limits<T>::epsilon();}
limits            803 3rdparty/openexr/Imath/ImathMatrix.h     static T            baseTypeMin()           {return limits<T>::min();}
limits            804 3rdparty/openexr/Imath/ImathMatrix.h     static T            baseTypeMax()           {return limits<T>::max();}
limits            805 3rdparty/openexr/Imath/ImathMatrix.h     static T            baseTypeSmallest()      {return limits<T>::smallest();}
limits            806 3rdparty/openexr/Imath/ImathMatrix.h     static T            baseTypeEpsilon()       {return limits<T>::epsilon();}
limits           1582 3rdparty/openexr/Imath/ImathMatrix.h             T mr = Imath::abs (r) / limits<T>::smallest();
limits           1633 3rdparty/openexr/Imath/ImathMatrix.h             T mr = Imath::abs (r) / limits<T>::smallest();
limits           2860 3rdparty/openexr/Imath/ImathMatrix.h         T mr = Imath::abs (r) / limits<T>::smallest();
limits            169 3rdparty/openexr/Imath/ImathMatrixAlgo.cpp     jacobiSVD (C, U, S, V, Imath::limits<double>::epsilon(), true);
limits            802 3rdparty/openexr/Imath/ImathMatrixAlgo.h     if ((abs (scl) < 1 && abs (row[i]) >= limits<T>::max() * abs (scl)))
limits           1299 3rdparty/openexr/Imath/ImathMatrixAlgo.h     if ((abs (scl) < 1 && abs (row[i]) >= limits<T>::max() * abs (scl)))
limits           1369 3rdparty/openexr/Imath/ImathMatrixAlgo.h            const T tol = Imath::limits<T>::epsilon(),
limits           1378 3rdparty/openexr/Imath/ImathMatrixAlgo.h            const T tol = Imath::limits<T>::epsilon(),
limits           1404 3rdparty/openexr/Imath/ImathMatrixAlgo.h     jacobiEigenSolver(A,S,V,limits<T>::epsilon());
limits           1421 3rdparty/openexr/Imath/ImathMatrixAlgo.h     jacobiEigenSolver(A,S,V,limits<T>::epsilon());
limits            640 3rdparty/openexr/Imath/ImathQuat.h     if (abs (sintheta) < 1 && abs (theta) >= limits<T>::max() * abs (sintheta))
limits            663 3rdparty/openexr/Imath/ImathQuat.h     if (abs (theta) < 1 && abs (sintheta) >= limits<T>::max() * abs (theta))
limits            206 3rdparty/openexr/Imath/ImathShear.h     static T		baseTypeMin()		{return limits<T>::min();}
limits            207 3rdparty/openexr/Imath/ImathShear.h     static T		baseTypeMax()		{return limits<T>::max();}
limits            208 3rdparty/openexr/Imath/ImathShear.h     static T		baseTypeSmallest()	{return limits<T>::smallest();}
limits            209 3rdparty/openexr/Imath/ImathShear.h     static T		baseTypeEpsilon()	{return limits<T>::epsilon();}
limits            246 3rdparty/openexr/Imath/ImathVec.h     static T		baseTypeMin()		{return limits<T>::min();}
limits            247 3rdparty/openexr/Imath/ImathVec.h     static T		baseTypeMax()		{return limits<T>::max();}
limits            248 3rdparty/openexr/Imath/ImathVec.h     static T		baseTypeSmallest()	{return limits<T>::smallest();}
limits            249 3rdparty/openexr/Imath/ImathVec.h     static T		baseTypeEpsilon()	{return limits<T>::epsilon();}
limits            458 3rdparty/openexr/Imath/ImathVec.h     static T		baseTypeMin()		{return limits<T>::min();}
limits            459 3rdparty/openexr/Imath/ImathVec.h     static T		baseTypeMax()		{return limits<T>::max();}
limits            460 3rdparty/openexr/Imath/ImathVec.h     static T		baseTypeSmallest()	{return limits<T>::smallest();}
limits            461 3rdparty/openexr/Imath/ImathVec.h     static T		baseTypeEpsilon()	{return limits<T>::epsilon();}
limits            640 3rdparty/openexr/Imath/ImathVec.h     static T		baseTypeMin()		{return limits<T>::min();}
limits            641 3rdparty/openexr/Imath/ImathVec.h     static T		baseTypeMax()		{return limits<T>::max();}
limits            642 3rdparty/openexr/Imath/ImathVec.h     static T		baseTypeSmallest()	{return limits<T>::smallest();}
limits            643 3rdparty/openexr/Imath/ImathVec.h     static T		baseTypeEpsilon()	{return limits<T>::epsilon();}
limits           1175 3rdparty/openexr/Imath/ImathVec.h     if (length2 < T (2) * limits<T>::smallest())
limits           1666 3rdparty/openexr/Imath/ImathVec.h     if (length2 < T (2) * limits<T>::smallest())
limits           2070 3rdparty/openexr/Imath/ImathVec.h     if (length2 < T (2) * limits<T>::smallest())