summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2023-07-12 10:30:28 +0200
committerMike Kaganski <mike.kaganski@collabora.com>2023-07-12 14:37:45 +0200
commitd706f5dc6872b94859444f1cacb31d89e0fb840f (patch)
treeb819fec597e8b29fd4a4e5db82e4cee03e5d6b95 /sal
parente2dc9b2d8404ac467bb74b5db423c84a249381bb (diff)
Simplify a bit
Change-Id: Idd3e96d99f13b1e87e2a01de9c9392ead0864de7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154323 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'sal')
-rw-r--r--sal/rtl/math.cxx32
1 files changed, 11 insertions, 21 deletions
diff --git a/sal/rtl/math.cxx b/sal/rtl/math.cxx
index 0d70e9718bfd..9a8c2614060f 100644
--- a/sal/rtl/math.cxx
+++ b/sal/rtl/math.cxx
@@ -112,22 +112,13 @@ namespace {
*/
bool isRepresentableInteger(double fAbsValue)
{
+ static_assert(std::numeric_limits<double>::is_iec559
+ && std::numeric_limits<double>::digits == 53);
assert(fAbsValue >= 0.0);
- const sal_Int64 kMaxInt = (static_cast< sal_Int64 >(1) << 53) - 1;
- if (fAbsValue <= static_cast< double >(kMaxInt))
- {
- sal_Int64 nInt = static_cast< sal_Int64 >(fAbsValue);
- // Check the integer range again because double comparison may yield
- // true within the precision range.
- // XXX loplugin:fpcomparison complains about floating-point comparison
- // for static_cast<double>(nInt) == fAbsValue, though we actually want
- // this here.
- if (nInt > kMaxInt)
- return false;
- double fInt = static_cast< double >(nInt);
- return !(fInt < fAbsValue) && !(fInt > fAbsValue);
- }
- return false;
+ if (fAbsValue >= 0x1p53)
+ return false;
+ sal_Int64 nInt = static_cast< sal_Int64 >(fAbsValue);
+ return nInt == fAbsValue;
}
// Returns 1-based index of least significant bit in a number, or zero if number is zero
@@ -724,12 +715,11 @@ double SAL_CALL rtl_math_approxValue( double fValue ) SAL_THROW_EXTERN_C()
bool SAL_CALL rtl_math_approxEqual(double a, double b) SAL_THROW_EXTERN_C()
{
static const double e48 = 0x1p-48;
- static const double e44 = 0x1p-44;
if (a == b)
return true;
- if (a == 0.0 || b == 0.0)
+ if (a == 0.0 || b == 0.0 || std::signbit(a) != std::signbit(b))
return false;
const double d = fabs(a - b);
@@ -737,16 +727,16 @@ bool SAL_CALL rtl_math_approxEqual(double a, double b) SAL_THROW_EXTERN_C()
return false; // Nan or Inf involved
a = fabs(a);
- if (d > (a * e44))
+ if (d >= (a * e48))
return false;
b = fabs(b);
- if (d > (b * e44))
+ if (d >= (b * e48))
return false;
- if (isRepresentableInteger(d) && isRepresentableInteger(a) && isRepresentableInteger(b))
+ if (isRepresentableInteger(a) && isRepresentableInteger(b))
return false; // special case for representable integers.
- return (d < a * e48 && d < b * e48);
+ return true;
}
double SAL_CALL rtl_math_expm1(double fValue) SAL_THROW_EXTERN_C()