1 /* ***** BEGIN LICENSE BLOCK *****
2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 * The contents of this file are subject to the Mozilla Public License Version
5 * 1.1 (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 * http://www.mozilla.org/MPL/
9 * Software distributed under the License is distributed on an "AS IS" basis,
10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 * for the specific language governing rights and limitations under the
14 * The Original Code is [Open Source Virtual Machine.].
16 * The Initial Developer of the Original Code is
17 * Adobe System Incorporated.
18 * Portions created by the Initial Developer are Copyright (C) 2004-2007
19 * the Initial Developer. All Rights Reserved.
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
39 #include <math.h> // no Symbian equivalent of frexp, ceil, floor.
45 double MathUtils::abs(double value
)
50 double MathUtils::acos(double value
)
53 Math::ACos(result
, value
);
57 double MathUtils::asin(double value
)
60 Math::ASin(result
, value
);
64 double MathUtils::atan(double value
)
67 Math::ATan(result
, value
);
71 double MathUtils::atan2(double y
, double x
)
73 bool xnan
= (((int*)(&x
))[1] & 0x7FF80000) == 0x7FF80000;
74 bool ynan
= (((int*)(&y
))[1] & 0x7FF80000) == 0x7FF80000;
81 int sx
= (((int*)(&x
))[1] & 0x80000000);
82 int sy
= (((int*)(&y
))[1] & 0x80000000);
88 if (sx
) // x is <0 or -0
99 if (sx
) // x is <0 or -0
103 else // x is >0 or +0
110 Math::ATan(result
, y
, x
);
114 double MathUtils::ceil(double value
)
116 return ::ceil(value
);
119 double MathUtils::cos(double value
)
122 Math::Cos(result
, value
);
126 double MathUtils::exp(double value
)
129 Math::Exp(result
, value
);
133 double MathUtils::floor(double value
)
135 return ::floor(value
);
138 uint64_t MathUtils::frexp(double value
, int *eptr
)
140 double fracMantissa
= ::frexp(value
, eptr
);
141 // correct mantissa and eptr to get integer values for both
142 *eptr
-= 53; // 52 mantissa bits + the hidden bit
143 return (uint64_t)(fracMantissa
* (double)(1LL << 53));
146 // The log function wants the natural log, not the base 10 log.
147 double MathUtils::log(double value
)
150 Math::Ln(result
, value
);
154 double fmod(double x
, double y
)
157 Math::Mod(result
, x
, y
);
161 double MathUtils::mod(double x
, double y
)
164 Math::Mod(result
, x
, y
);
168 double MathUtils::powInternal(double x
, double y
)
171 Math::Pow(result
, x
, y
);
175 double MathUtils::sin(double value
)
178 Math::Sin(result
, value
);
182 double MathUtils::sqrt(double value
)
185 Math::Sqrt(result
, value
);
189 double MathUtils::tan(double value
)
192 Math::Tan(result
, value
);