First public contribution.
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 // f32test\math\t_math.h
15 // Copy of e32\umath\um_std.h for E32\TMATH directory
31 #if defined(__DOUBLE_WORDS_SWAPPED__)
39 #define DVAL(m0,m1,m2,m3,e) {(TUint)((m0<<16)|m1),e+KExponentBias,0,(TUint)((m2<<16)|m3)}
48 #define DVAL(m0,m1,m2,m3,e) {(TUint)((m2<<16)|m3),(TUint)((m0<<16)|m1),e+KExponentBias,0}
60 GLREF_C void Panic(TMathPanic aPanic);