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\euser\maths\um_rand.cpp
23 EXPORT_C TInt Math::Rand(TInt64 &aSeed)
25 Generates a stream of uniformly distributed pseudo-random integers
26 in the range, 0 to KMaxTInt.
28 For each stream of pseudo-random numbers you wish to generate, you should
29 pass the reference to the same 64-bit seed on each call to this function.
30 You should not change the seed between calls.
32 @param aSeed A reference to a 64-bit seed, which is updated
33 as a result of the call.
35 @return The next pseudo-random number in the sequence.
41 return(((TInt)(aSeed>>16))&0x7fffffff);
47 EXPORT_C TReal Math::FRand(TInt64& aSeed) __SOFTFP
49 Generates a stream of uniformly distributed pseudo-random real numbers
52 @param aSeed A reference to a 64-bit seed, which is updated
53 as a result of the call.
55 @return The next pseudo-random number in the sequence.
58 TUint low = (TUint)Math::Rand(aSeed);
59 TUint high = (TUint)Math::Rand(aSeed)&0x7FFFFFFF; // make sure TInt64 is positive
60 TRealX f((static_cast<TInt64>(high) << 32) | low); // construct TRealX 0<=f<2^63
62 f.iExp-=63; // Scale f to range 0<=f<1