Update contrib.
1 // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\e32math.h
27 const TInt KMaxPrecision=15;
33 This constant specifies the maximum number of significant digits available with floating
34 point computations. Rounding and string formatting methods will not use more digits than this.
36 const TInt KPrecisionLimit=12;
42 Let D be the set of real numbers exactly representable by an IEEE-754 'double'
43 For any positive integer n let X_n be the set of real numbers with an exact
44 decimal representation using n significant digits.
45 Let r_n : D -> X_n be defined by r_n(x)=y such that
46 |y-x| = inf { |z-x| : z in X_n }
47 and (in the case where two such y exist) that the last significant digit in the
48 decimal representation of y is even.
49 This constant is the least n such that r_n is injective.
51 const TInt KIEEEDoubleInjectivePrecision=17;
57 const TInt KMantissaBits=53;
62 const TInt KMaxExponent=1023;
67 const TInt KExponentBias=1022;
72 const TInt KSpecialExponent=2047;
80 The maximum exponent for a 32-bit floating point number.
82 const TInt KTReal32MaxExponent=128; // changed from 127
89 The minimum exponent for a 32-bit floating point number.
91 const TInt KTReal32MinExponent=-125;
96 const TInt KTReal32ExponentBias=126;
101 const TInt KTReal32SpecialExponent=255; // changed from KTReal32ExponentBad
108 A zero exponent value for a 32-bit floating point number.
110 const TInt KTReal32ZeroExponent=0;
118 The maximum exponent for a 64-bit floating point number.
120 const TInt KTReal64MaxExponent=1024; // changed from 1023
127 The minimum exponent for a 64-bit floating point number.
129 const TInt KTReal64MinExponent=-1021;
136 const TInt KTReal64ExponentBias=1022;
143 const TInt KTReal64SpecialExponent=2047; // changed from KTReal64BadExponent
150 A zero exponent value for a 64-bit floating point number.
152 const TInt KTReal64ZeroExponent=0;
160 The minimum value of a 64-bit floating point number.
162 const TReal KMinTReal=2.2250738585072015E-308; // changed from TReal64
169 The maximum value of a 64-bit floating point number.
171 const TReal KMaxTReal=1.7976931348623157E+308; //
179 The minimum value of a 32-bit floating point number.
181 const TReal32 KMinTReal32=1.17549435E-38f;
188 The maximum value of a 32-bit floating point number.
190 const TReal32 KMaxTReal32=3.4028234663852885981170418348452e+38f;
198 The minimum value of a 64-bit floating point number.
200 const TReal64 KMinTReal64=2.2250738585072015E-308;
207 The maximum value of a 64-bit floating point number.
209 const TReal64 KMaxTReal64=1.7976931348623157E+308;
217 const TReal KSqhf=0.70710678118654752440;
224 Log 2 to the base "e".
226 const TReal KRln2=1.4426950408889634;
233 Log 10 to the base "e".
235 const TReal KRln10=0.4342944819032518;
242 Log 2 to the base 10.
244 const TReal KRlg2=0.3010299956639812;
251 The mathematical constant Pi.
253 const TReal KPi=3.1415926535897932;
260 The reciprocal of the mathematical constant Pi.
262 const TReal KPiInv=0.3183098861837907;
269 The mathematical constant Pi divided by 2.
271 const TReal KPiBy2=1.5707963267948966;
280 const TReal KDrpi=0.6366197723675813;
287 The square root of 3.
289 const TReal KSqt3=1.7320508075688773;
296 const TReal KMsq3=0.2679491924311227;
303 The multiplying factor to convert radians to degrees.
305 const TReal KRadToDeg=57.29577951308232;
312 The multiplying factor to convert degrees to radians.
314 const TReal KDegToRad=0.017453292519943296;
324 A class encapsulating an extended precision real value.
326 This class provides 64 bit precision and a dynamic range of approximately
327 1E-9863 to 1E+9863. All member functions are optimized for speed.
331 enum TRealXOrder {ELessThan=1,EEqual=2,EGreaterThan=4,EUnordered=8};
334 IMPORT_C TRealX(TInt aInt);
335 IMPORT_C TRealX(TUint aInt);
336 IMPORT_C TRealX(TUint aExp, TUint aMantHi, TUint aMantLo);
337 IMPORT_C TRealX(const TInt64 &aInt);
338 IMPORT_C TRealX(TReal32 aReal) __SOFTFP;
339 IMPORT_C TRealX(TReal64 aReal) __SOFTFP;
340 IMPORT_C TRealX &operator=(TInt aInt);
341 IMPORT_C TRealX &operator=(TUint aInt);
342 IMPORT_C TRealX &operator=(const TInt64& aInt);
343 IMPORT_C TRealX &operator=(TReal32 aReal) __SOFTFP;
344 IMPORT_C TRealX &operator=(TReal64 aReal) __SOFTFP;
345 IMPORT_C TInt Set(TInt aInt);
346 IMPORT_C TInt Set(TUint aInt);
347 IMPORT_C TInt Set(const TInt64& aInt);
348 IMPORT_C TInt Set(TReal32 aReal) __SOFTFP;
349 IMPORT_C TInt Set(TReal64 aReal) __SOFTFP;
350 IMPORT_C operator TInt() const;
351 IMPORT_C operator TUint() const;
352 IMPORT_C operator TInt64() const;
353 IMPORT_C operator TReal32() const __SOFTFP;
354 IMPORT_C operator TReal64() const __SOFTFP;
355 IMPORT_C TInt GetTReal(TReal32 &aVal) const;
356 IMPORT_C TInt GetTReal(TReal64 &aVal) const;
357 IMPORT_C void SetZero(TBool aNegative=EFalse);
358 IMPORT_C void SetNaN();
359 IMPORT_C void SetInfinite(TBool aNegative);
360 IMPORT_C TBool IsZero() const;
361 IMPORT_C TBool IsNaN() const;
362 IMPORT_C TBool IsInfinite() const;
363 IMPORT_C TBool IsFinite() const;
364 IMPORT_C const TRealX &operator+=(const TRealX &aVal);
365 IMPORT_C const TRealX &operator-=(const TRealX &aVal);
366 IMPORT_C const TRealX &operator*=(const TRealX &aVal);
367 IMPORT_C const TRealX &operator/=(const TRealX &aVal);
368 IMPORT_C const TRealX &operator%=(const TRealX &aVal);
369 IMPORT_C TInt AddEq(const TRealX &aVal);
370 IMPORT_C TInt SubEq(const TRealX &aVal);
371 IMPORT_C TInt MultEq(const TRealX &aVal);
372 IMPORT_C TInt DivEq(const TRealX &aVal);
373 IMPORT_C TInt ModEq(const TRealX &aVal);
374 IMPORT_C TRealX operator+() const;
375 IMPORT_C TRealX operator-() const;
376 IMPORT_C TRealX &operator++();
377 IMPORT_C TRealX operator++(TInt);
378 IMPORT_C TRealX &operator--();
379 IMPORT_C TRealX operator--(TInt);
380 IMPORT_C TRealX operator+(const TRealX &aVal) const;
381 IMPORT_C TRealX operator-(const TRealX &aVal) const;
382 IMPORT_C TRealX operator*(const TRealX &aVal) const;
383 IMPORT_C TRealX operator/(const TRealX &aVal) const;
384 IMPORT_C TRealX operator%(const TRealX &aVal) const;
385 IMPORT_C TInt Add(TRealX& aResult,const TRealX &aVal) const;
386 IMPORT_C TInt Sub(TRealX& aResult,const TRealX &aVal) const;
387 IMPORT_C TInt Mult(TRealX& aResult,const TRealX &aVal) const;
388 IMPORT_C TInt Div(TRealX& aResult,const TRealX &aVal) const;
389 IMPORT_C TInt Mod(TRealX& aResult,const TRealX &aVal) const;
390 IMPORT_C TRealXOrder Compare(const TRealX& aVal) const;
391 inline TBool operator==(const TRealX &aVal) const;
392 inline TBool operator!=(const TRealX &aVal) const;
393 inline TBool operator>=(const TRealX &aVal) const;
394 inline TBool operator<=(const TRealX &aVal) const;
395 inline TBool operator>(const TRealX &aVal) const;
396 inline TBool operator<(const TRealX &aVal) const;
401 // Represented as two adjacent 32 bit values, rather than one 64 value.
402 // This is to avoid EABI introduced padding overheads and BC breakages.
403 // This representation works because the mantissa is always accessed from
404 // assembler code as two 32 bit quantities. The C++ code that accesses it
405 // now constructs an automatic TInt64 with the two components.
410 The sign: 0 for +, 1 for -
415 Flags: 0 for exact, 1 for rounded down, 2 for rounded up
420 Exponent: biased by 32767, iExp=0 => zero, +65535 => infinity or NaN
433 A structure containing the set of coefficients for a polynomial.
450 A collection of mathematical functions.
454 IMPORT_C static TInt ACos(TReal &aTrg,const TReal &aSrc);
455 IMPORT_C static TInt ASin(TReal &aTrg,const TReal &aSrc);
456 IMPORT_C static TInt ATan(TReal &aTrg,const TReal &aSrc);
457 IMPORT_C static TInt ATan(TReal &aTrg,const TReal &aSrcY,const TReal &aSrcX);
458 IMPORT_C static TInt Cos(TReal &aTrg,const TReal &aSrc);
461 This function is not implemented by Symbian OS.
463 IMPORT_C static TInt DtoR(TReal &aTrg,const TDesC &aSrc,TInt &aPos,const TChar aPoint);
464 IMPORT_C static TInt Exp(TReal &aTrg,const TReal &aSrc);
465 IMPORT_C static TInt Frac(TReal &aTrg,const TReal &aSrc);
466 IMPORT_C static TInt Int(TReal &aTrg,const TReal &aSrc);
467 IMPORT_C static TInt Int(TInt16 &aTrg,const TReal &aSrc);
468 IMPORT_C static TInt Int(TInt32 &aTrg,const TReal &aSrc);
469 IMPORT_C static TInt Log(TReal &aTrg,const TReal &aSrc);
470 IMPORT_C static TInt Ln(TReal &aTrg,const TReal &aSrc);
471 IMPORT_C static TInt Mod(TReal &aTrg,const TReal &aSrc,const TReal &aModulus);
472 IMPORT_C static TReal Poly(TReal aVal,const SPoly *aPoly) __SOFTFP;
473 IMPORT_C static TInt Pow(TReal &aTrg,const TReal &aSrc,const TReal &aPower);
474 IMPORT_C static TInt Pow10(TReal &aTrg,const TInt exp);
475 IMPORT_C static TInt Rand(TInt64 &aSeed);
476 IMPORT_C static TReal FRand(TInt64 &aSeed) __SOFTFP;
477 IMPORT_C static TUint32 Random();
478 IMPORT_C static TInt Round(TReal &aTrg,const TReal &aSrc,TInt aDecimalPlaces);
479 IMPORT_C static TInt Sin(TReal &aTrg,const TReal &aSrc);
480 IMPORT_C static TInt Sqrt(TReal &aTrg,const TReal &aSrc);
481 IMPORT_C static TInt Tan(TReal &aTrg,const TReal &aSrc);
482 IMPORT_C static TBool IsZero(const TReal &aVal);
483 IMPORT_C static TBool IsNaN(const TReal &aVal);
484 IMPORT_C static TBool IsInfinite(const TReal &aVal);
485 IMPORT_C static TBool IsFinite(const TReal &aVal);
486 IMPORT_C static void PolyX(TRealX& aY, const TRealX& aX, TInt aDeg, const TRealX *aCoef);
487 static TInt MultPow10X(TRealX& aTrg, TInt aPower);
488 IMPORT_C static void Mul64(Int64 aX, Int64 aY, Int64& aOutH, Uint64& aOutL);
489 IMPORT_C static void UMul64(Uint64 aX, Uint64 aY, Uint64& aOutH, Uint64& aOutL);
490 IMPORT_C static Int64 DivMod64(Int64 aDividend, Int64 aDivisor, Int64& aRemainder);
491 IMPORT_C static Uint64 UDivMod64(Uint64 aDividend, Uint64 aDivisor, Uint64& aRemainder);
493 IMPORT_C static void SetZero(TReal &aVal,TInt aSign=0);
494 IMPORT_C static void SetNaN(TReal &aVal);
495 IMPORT_C static void SetInfinite(TReal &aVal,TInt aSign);
498 #include <e32math.inl>
500 #endif // __E32MATH_H__