From 669a418f75c05d4a39e2bcaff2b7b93dec1c5764 Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Mon, 3 Apr 2017 14:51:45 -0400 Subject: Drop FXSYS_ from math methods This Cl drops the FXSYS_ from math methods which are the same on all platforms. Bug: pdfium:694 Change-Id: I85c9ff841fd9095b1434f67319847ba0cd9df7ac Reviewed-on: https://pdfium-review.googlesource.com/3598 Commit-Queue: dsinclair Reviewed-by: Tom Sepez --- fpdfsdk/javascript/JS_Value.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'fpdfsdk/javascript') diff --git a/fpdfsdk/javascript/JS_Value.cpp b/fpdfsdk/javascript/JS_Value.cpp index a0c286f68d..e9fa9a0fbe 100644 --- a/fpdfsdk/javascript/JS_Value.cpp +++ b/fpdfsdk/javascript/JS_Value.cpp @@ -501,7 +501,7 @@ int _isfinite(double v) { } double _toInteger(double n) { - return (n >= 0) ? FXSYS_floor(n) : -FXSYS_floor(-n); + return (n >= 0) ? floor(n) : -floor(-n); } bool _isLeapYear(int year) { @@ -509,9 +509,8 @@ bool _isLeapYear(int year) { } int _DayFromYear(int y) { - return (int)(365 * (y - 1970.0) + FXSYS_floor((y - 1969.0) / 4) - - FXSYS_floor((y - 1901.0) / 100) + - FXSYS_floor((y - 1601.0) / 400)); + return (int)(365 * (y - 1970.0) + floor((y - 1969.0) / 4) - + floor((y - 1901.0) / 100) + floor((y - 1601.0) / 400)); } double _TimeFromYear(int y) { @@ -529,7 +528,7 @@ double _TimeFromYearMonth(int y, int m) { } int _Day(double t) { - return (int)FXSYS_floor(t / 86400000); + return (int)floor(t / 86400000); } int _YearFromTime(double t) { @@ -699,7 +698,7 @@ double JS_MakeDay(int nYear, int nMonth, int nDate) { double y = _toInteger(nYear); double m = _toInteger(nMonth); double dt = _toInteger(nDate); - double ym = y + FXSYS_floor((double)m / 12); + double ym = y + floor((double)m / 12); double mn = _Mod(m, 12); double t = _TimeFromYearMonth((int)ym, (int)mn); -- cgit v1.2.3