Lines Matching defs:max
247 static T baseTypeMax() {return limits<T>::max();}
459 static T baseTypeMax() {return limits<T>::max();}
641 static T baseTypeMax() {return limits<T>::max();}
1149 T max = absX;
1151 if (max < absY)
1152 max = absY;
1154 if (max == T (0))
1158 // Do not replace the divisions by max with multiplications by 1/max.
1159 // Computing 1/max can overflow but the divisions below will always
1163 absX /= max;
1164 absY /= max;
1166 return max * Math<T>::sqrt (absX * absX + absY * absY);
1636 T max = absX;
1638 if (max < absY)
1639 max = absY;
1641 if (max < absZ)
1642 max = absZ;
1644 if (max == T (0))
1648 // Do not replace the divisions by max with multiplications by 1/max.
1649 // Computing 1/max can overflow but the divisions below will always
1653 absX /= max;
1654 absY /= max;
1655 absZ /= max;
1657 return max * Math<T>::sqrt (absX * absX + absY * absY + absZ * absZ);
2035 T max = absX;
2037 if (max < absY)
2038 max = absY;
2040 if (max < absZ)
2041 max = absZ;
2043 if (max < absW)
2044 max = absW;
2046 if (max == T (0))
2050 // Do not replace the divisions by max with multiplications by 1/max.
2051 // Computing 1/max can overflow but the divisions below will always
2055 absX /= max;
2056 absY /= max;
2057 absZ /= max;
2058 absW /= max;
2060 return max *