#include <e32math.h>
Link against:
euser.lib
class TRealX;
Description
A class encapsulating an extended precision real value.
This class provides 64 bit precision and a dynamic range of approximately 1E-9863 to 1E+9863. All member functions are optimized
for speed.
Members
Defined in TRealX
:
Add(TRealX &,const TRealX &)const
Adds an extended precision value to this extended precision number.
AddEq(const TRealX &)
Adds an extended precision value to this extended precision number.
Compare(const TRealX &)const
Div(TRealX &,const TRealX &)const
Divides this extended precision number by an extended precision value.
DivEq(const TRealX &)
Divides this extended precision number by an extended precision value.
EEqual
EGreaterThan
ELessThan
EUnordered
GetTReal(TReal32 &)const
Extracts the extended precision value as a single precision floating point value...
GetTReal(TReal64 &)const
Extracts the extended precision value as a double precision floating point value...
IsFinite()const
Determines whether the extended precision value has a finite value.
IsInfinite()const
Determines whether the extended precision value has a finite value.
IsNaN()const
Determines whether the extended precision value is 'not a number'.
IsZero()const
Determines whether the extended precision value is zero.
Mod(TRealX &,const TRealX &)const
Modulo-divides this extended precision number by an extended precision value.
ModEq(const TRealX &)
Modulo-divides this extended precision number by an extended precision value.
Mult(TRealX &,const TRealX &)const
Multiplies this extended precision number by an extended precision value.
MultEq(const TRealX &)
Multiplies this extended precision number by an extended precision value.
Set(TInt)
Gives this extended precision object a new value taken from a signed integer.
Set(TReal32)
Gives this extended precision object a new value taken from a single precision f...
Set(TReal64)
Gives this extended precision object a new value taken from a double precision f...
Set(TUint)
Gives this extended precision object a new value taken from an unsigned integer.
Set(const TInt64 &)
Gives this extended precision object a new value taken from a 64 bit integer.
SetInfinite(TBool)
Sets the value of this extended precision object to infinity.
SetNaN()
Sets the value of this extended precision object to 'not a number'.
SetZero(TBool)
Sets the value of this extended precision object to zero.
Sub(TRealX &,const TRealX &)const
Subtracts an extended precision value from this extended precision number.
SubEq(const TRealX &)
Subtracts an extended precision value from this extended precision number.
TRealX()
Constructs a default extended precision object.
TRealX(TInt)
Constructs an extended precision object from a signed integer value.
TRealX(TReal32)
Constructs an extended precision object from a single precision floating point n...
TRealX(TReal64)
Constructs an extended precision object from a double precision floating point n...
TRealX(TUint)
Constructs an extended precision object from an unsigned integer value.
TRealX(TUint,TUint,TUint)
Constructs an extended precision object from an explicit exponent and a 64 bit m...
TRealX(const TInt64 &)
Constructs an extended precision object from a 64 bit integer.
TRealXOrder
iExp
Exponent: biased by 32767, iExp=0 => zero, +65535 => infinity or NaN
iFlag
Flags: 0 for exact, 1 for rounded down, 2 for rounded up
iMantHi
iMantLo
The mantissa.
iSign
The sign: 0 for +, 1 for -
operator *(const TRealX &)const
Multiplies this extended precision number by an extended precision value.
operator *=(const TRealX &)
Multiplies this extended precision number by an extended precision value.
operator TInt()const
Gets the extended precision value as a signed integer value.
operator TInt64()const
Returns the extended precision value as a 64 bit integer value.
operator TReal32()const
Returns the extended precision value as a single precision floating point value....
operator TReal64()const
Returns the extended precision value as a double precision floating point value....
operator TUint()const
Returns the extended precision value as an unsigned signed integer value.
operator!=(const TRealX &)const
Compares this extended precision number for in-equality with another.
operator%(const TRealX &)const
Modulo-divides this extended precision number by an extended precision value.
operator%=(const TRealX &)
Modulo-divides this extended precision number by an extended precision value.
operator>(const TRealX &)const
Compares this extended precision number for being greater than another.
operator>=(const TRealX &)const
...
operator<(const TRealX &)const
Compares this extended precision number for being less than another.
operator<=(const TRealX &)const
...
operator+()const
Returns this extended precision number unchanged.
operator+(const TRealX &)const
Adds an extended precision value to this extended precision number.
operator++()
Increments this extended precision number by one, and then returns a reference t...
operator++(TInt)
Returns this extended precision number before incrementing it by one.
operator+=(const TRealX &)
Adds an extended precision value to this extended precision number.
operator-()const
Negates this extended precision number.
operator-(const TRealX &)const
Subtracts an extended precision value from this extended precision number.
operator--()
Decrements this extended precision number by one, and then returns a reference t...
operator--(TInt)
Returns this extended precision number before decrementing it by one.
operator-=(const TRealX &)
Subtracts an extended precision value from this extended precision number.
operator/(const TRealX &)const
Divides this extended precision number by an extended precision value.
operator/=(const TRealX &)
Divides this extended precision number by an extended precision value.
operator=(TInt)
Assigns the specified signed integer value to this extended precision object.
operator=(TReal32)
Assigns the specified single precision floating point number to this extended pr...
operator=(TReal64)
Assigns the specified double precision floating point number to this extended pr...
operator=(TUint)
Assigns the specified unsigned integer value to this extended precision object.
operator=(const TInt64 &)
Assigns the specified 64 bit integer value to this extended precision object.
operator==(const TRealX &)const
Compares this extended precision number for equality with another.
Construction and destruction
IMPORT_C TRealX();
Description
Constructs a default extended precision object.
This sets the value to zero.
IMPORT_C TRealX(TInt aInt);
Description
Constructs an extended precision object from a signed integer value.
Parameters
IMPORT_C TRealX(TUint aInt);
Description
Constructs an extended precision object from an unsigned integer value.
Parameters
TRealX(TUint,TUint,TUint)
IMPORT_C TRealX(TUint aExp, TUint aMantHi, TUint aMantLo);
Description
Constructs an extended precision object from an explicit exponent and a 64 bit mantissa.
Parameters
TUint aExp |
|
TUint aMantHi |
The high order 32 bits of the 64 bit mantissa
|
TUint aMantLo |
The low order 32 bits of the 64 bit mantissa
|
|
IMPORT_C TRealX(const TInt64 &aInt);
Description
Constructs an extended precision object from a 64 bit integer.
Parameters
IMPORT_C TRealX(TReal32 aReal);
Description
Constructs an extended precision object from a single precision floating point number.
Parameters
TReal32 aReal |
The single precision floating point value.
|
|
IMPORT_C TRealX(TReal64 aReal);
Description
Constructs an extended precision object from a double precision floating point number.
Parameters
TReal64 aReal |
The double precision floating point value.
|
|
IMPORT_C TRealX& operator=(TInt aInt);
Description
Assigns the specified signed integer value to this extended precision object.
Parameters
Return value
TRealX &
|
A reference to this extended precision object.
|
|
IMPORT_C TRealX& operator=(TUint aInt);
Description
Assigns the specified unsigned integer value to this extended precision object.
Parameters
Return value
TRealX &
|
A reference to this extended precision object.
|
|
operator=(const TInt64 &)
IMPORT_C TRealX& operator=(const TInt64 &aInt);
Description
Assigns the specified 64 bit integer value to this extended precision object.
Parameters
Return value
TRealX &
|
A reference to this extended precision object.
|
|
IMPORT_C TRealX& operator=(TReal32 aReal);
Description
Assigns the specified single precision floating point number to this extended precision object.
Parameters
TReal32 aReal |
The single precision floating point value.
|
|
Return value
TRealX &
|
A reference to this extended precision object.
|
|
IMPORT_C TRealX& operator=(TReal64 aReal);
Description
Assigns the specified double precision floating point number to this extended precision object.
Parameters
TReal64 aReal |
The double precision floating point value.
|
|
Return value
TRealX &
|
A reference to this extended precision object.
|
|
IMPORT_C TInt Set(TInt aInt);
Description
Gives this extended precision object a new value taken from a signed integer.
Parameters
Return value
IMPORT_C TInt Set(TUint aInt);
Description
Gives this extended precision object a new value taken from an unsigned integer.
Parameters
Return value
IMPORT_C TInt Set(const TInt64 &aInt);
Description
Gives this extended precision object a new value taken from a 64 bit integer.
Parameters
Return value
IMPORT_C TInt Set(TReal32 aReal);
Description
Gives this extended precision object a new value taken from a single precision floating point number.
Parameters
TReal32 aReal |
The single precision floating point value.
|
|
Return value
TInt
|
KErrNone, if a valid number; KErrOverflow, if the number is infinite; KErrArgument, if not a number.
|
|
IMPORT_C TInt Set(TReal64 aReal);
Description
Gives this extended precision object a new value taken from a double precision floating point number.
Parameters
TReal64 aReal |
The double precision floating point value.
|
|
Return value
TInt
|
KErrNone, if a valid number; KErrOverflow, if the number is infinite; KErrArgument, if not a number.
|
|
IMPORT_C operator TInt() const;
Description
Gets the extended precision value as a signed integer value.
The operator returns:
1. zero , if the extended precision value is not a number
2. 0x7FFFFFFF, if the value is positive and too big to fit into a TInt.
3. 0x80000000, if the value is negative and too big to fit into a TInt.
Return value
IMPORT_C operator TUint() const;
Description
Returns the extended precision value as an unsigned signed integer value.
The operator returns:
1. zero, if the extended precision value is not a number
2. 0xFFFFFFFF, if the value is positive and too big to fit into a TUint.
3. zero, if the value is negative and too big to fit into a TUint.
Return value
IMPORT_C operator TInt64() const;
Description
Returns the extended precision value as a 64 bit integer value.
The operator returns:
1. zero, if the extended precision value is not a number
2. 0x7FFFFFFF FFFFFFFF, if the value is positive and too big to fit into a TInt64
3. 0x80000000 00000000, if the value is negative and too big to fit into a TInt.
Return value
IMPORT_C operator TReal32() const;
Description
Returns the extended precision value as a single precision floating point value.
Return value
IMPORT_C operator TReal64() const;
Description
Returns the extended precision value as a double precision floating point value.
Return value
IMPORT_C TInt GetTReal(TReal32 &aVal) const;
Description
Extracts the extended precision value as a single precision floating point value.
Parameters
TReal32 &aVal |
A reference to a single precision object which contains the result of the operation.
|
|
Return value
TInt
|
KErrNone, if the operation is successful; KErrOverflow, if the operation results in overflow; KErrUnderflow, if the operation
results in underflow.
|
|
IMPORT_C TInt GetTReal(TReal64 &aVal) const;
Description
Extracts the extended precision value as a double precision floating point value.
Parameters
TReal64 &aVal |
A reference to a double precision object which contains the result of the operation.
|
|
Return value
TInt
|
KErrNone, if the operation is successful; KErrOverflow, if the operation results in overflow; KErrUnderflow, if the operation
results in underflow.
|
|
IMPORT_C void SetZero(TBool aNegative=EFalse);
Description
Sets the value of this extended precision object to zero.
Parameters
TBool aNegative |
ETrue, the value is a negative zero; EFalse, the value is a positive zero, this is the default.
|
|
IMPORT_C void SetNaN();
Description
Sets the value of this extended precision object to 'not a number'.
IMPORT_C void SetInfinite(TBool aNegative);
Description
Sets the value of this extended precision object to infinity.
Parameters
TBool aNegative |
ETrue, the value is a negative zero; EFalse, the value is a positive zero.
|
|
IMPORT_C TBool IsZero() const;
Description
Determines whether the extended precision value is zero.
Return value
TBool
|
True, if the extended precision value is zero, false, otherwise.
|
|
IMPORT_C TBool IsNaN() const;
Description
Determines whether the extended precision value is 'not a number'.
Return value
TBool
|
True, if the extended precision value is 'not a number', false, otherwise.
|
|
IMPORT_C TBool IsInfinite() const;
Description
Determines whether the extended precision value has a finite value.
Return value
TBool
|
True, if the extended precision value is finite, false, if the value is 'not a number' or is infinite,
|
|
IMPORT_C TBool IsFinite() const;
Description
Determines whether the extended precision value has a finite value.
Return value
TBool
|
True, if the extended precision value is finite, false, if the value is 'not a number' or is infinite,
|
|
operator+=(const TRealX &)
IMPORT_C const TRealX& operator+=(const TRealX &aVal);
Description
Adds an extended precision value to this extended precision number.
Parameters
const TRealX &aVal |
The extended precision value to be added.
|
|
Return value
const TRealX & |
A reference to this object.
|
|
Panic codes
MATHX |
KErrOverflow if the operation results in overflow. MATHX KErrUnderflow if the operation results in underflow.
|
|
operator-=(const TRealX &)
IMPORT_C const TRealX& operator-=(const TRealX &aVal);
Description
Subtracts an extended precision value from this extended precision number.
Parameters
const TRealX &aVal |
The extended precision value to be subtracted.
|
|
Return value
const TRealX & |
A reference to this object.
|
|
Panic codes
MATHX |
KErrOverflow if the operation results in overflow. MATHX KErrUnderflow if the operation results in underflow.
|
|
operator *=(const TRealX &)
IMPORT_C const TRealX& operator *=(const TRealX &aVal);
Description
Multiplies this extended precision number by an extended precision value.
Parameters
const TRealX &aVal |
The extended precision value to be subtracted.
|
|
Return value
const TRealX & |
A reference to this object.
|
|
Panic codes
MATHX |
KErrOverflow if the operation results in overflow. MATHX KErrUnderflow if the operation results in underflow.
|
|
operator/=(const TRealX &)
IMPORT_C const TRealX& operator/=(const TRealX &aVal);
Description
Divides this extended precision number by an extended precision value.
Parameters
const TRealX &aVal |
The extended precision value to be used as the divisor.
|
|
Return value
const TRealX & |
A reference to this object.
|
|
Panic codes
MATHX |
KErrOverflow if the operation results in overflow. MATHX KErrUnderflow if the operation results in underflow.
|
MATHX |
KErrDivideByZero if the divisor is zero.
|
|
operator%=(const TRealX &)
IMPORT_C const TRealX& operator%=(const TRealX &aVal);
Description
Modulo-divides this extended precision number by an extended precision value.
Parameters
const TRealX &aVal |
The extended precision value to be used as the divisor.
|
|
Return value
const TRealX & |
A reference to this object.
|
|
Panic codes
MATHX |
KErrTotalLossOfPrecision panic if precision is lost. MATHX KErrUnderflow if the operation results in underflow.
|
|
IMPORT_C TInt AddEq(const TRealX &aVal);
Description
Adds an extended precision value to this extended precision number.
Parameters
const TRealX &aVal |
The extended precision value to be added.
|
|
Return value
TInt
|
KErrNone, if the operation is successful; KErrOverflow,if the operation results in overflow; KErrUnderflow, if the operation
results in underflow.
|
|
IMPORT_C TInt SubEq(const TRealX &aVal);
Description
Subtracts an extended precision value from this extended precision number.
Parameters
const TRealX &aVal |
The extended precision value to be subtracted.
|
|
Return value
TInt
|
KErrNone, if the operation is successful; KErrOverflow, if the operation results in overflow; KErrUnderflow, if the operation
results in underflow.
|
|
IMPORT_C TInt MultEq(const TRealX &aVal);
Description
Multiplies this extended precision number by an extended precision value.
Parameters
const TRealX &aVal |
The extended precision value to be used as the multiplier.
|
|
Return value
TInt
|
KErrNone, if the operation is successful; KErrOverflow, if the operation results in overflow; KErrUnderflow, if the operation
results in underflow
|
|
IMPORT_C TInt DivEq(const TRealX &aVal);
Description
Divides this extended precision number by an extended precision value.
Parameters
const TRealX &aVal |
The extended precision value to be used as the divisor.
|
|
Return value
TInt
|
KErrNone, if the operation is successful; KErrOverflow, if the operation results in overflow; KErrUnderflow, if the operation
results in underflow; KErrDivideByZero, if the divisor is zero.
|
|
IMPORT_C TInt ModEq(const TRealX &aVal);
Description
Modulo-divides this extended precision number by an extended precision value.
Parameters
const TRealX &aVal |
The extended precision value to be used as the divisor.
|
|
Return value
TInt
|
KErrNone, if the operation is successful; KErrTotalLossOfPrecision, if precision is lost; KErrUnderflow, if the operation
results in underflow.
|
|
IMPORT_C TRealX operator+() const;
Description
Returns this extended precision number unchanged.
Note that this may also be referred to as a unary plus operator.
Return value
TRealX
|
The extended precision number.
|
|
IMPORT_C TRealX operator-() const;
Description
Negates this extended precision number.
This may also be referred to as a unary minus operator.
Return value
TRealX
|
The negative of the extended precision number.
|
|
IMPORT_C TRealX& operator++();
Description
Increments this extended precision number by one, and then returns a reference to it.
This is also referred to as a prefix operator.
Return value
TRealX &
|
A reference to this object.
|
|
Panic codes
MATHX |
KErrOverflow if the operation results in overflow. MATHX KErrUnderflow if the operation results in underflow.
|
|
IMPORT_C TRealX operator++(TInt);
Description
Returns this extended precision number before incrementing it by one.
This is also referred to as a postfix operator.
Parameters
Return value
TRealX
|
A reference to this object.
|
|
Panic codes
MATHX |
KErrOverflow if the operation results in overflow. MATHX KErrUnderflow if the operation results in underflow.
|
|
IMPORT_C TRealX& operator--();
Description
Decrements this extended precision number by one, and then returns a reference to it.
This is also referred to as a prefix operator.
Return value
TRealX &
|
A reference to this object.
|
|
Panic codes
MATHX |
KErrOverflow if the operation results in overflow. MATHX KErrUnderflow if the operation results in underflow.
|
|
IMPORT_C TRealX operator--(TInt);
Description
Returns this extended precision number before decrementing it by one.
This is also referred to as a postfix operator.
Parameters
Return value
TRealX
|
A reference to this object.
|
|
Panic codes
MATHX |
KErrOverflow if the operation results in overflow. MATHX KErrUnderflow if the operation results in underflow.
|
|
operator+(const TRealX &)const
IMPORT_C TRealX operator+(const TRealX &aVal) const;
Description
Adds an extended precision value to this extended precision number.
Parameters
const TRealX &aVal |
The extended precision value to be added.
|
|
Return value
TRealX
|
An extended precision object containing the result.
|
|
Panic codes
MATHX |
KErrOverflow if the operation results in overflow. MATHX KErrUnderflow if the operation results in underflow.
|
|
operator-(const TRealX &)const
IMPORT_C TRealX operator-(const TRealX &aVal) const;
Description
Subtracts an extended precision value from this extended precision number.
Parameters
const TRealX &aVal |
The extended precision value to be subtracted.
|
|
Return value
TRealX
|
An extended precision object containing the result.
|
|
Panic codes
MATHX |
KErrOverflow if the operation results in overflow. MATHX KErrUnderflow if the operation results in underflow.
|
|
operator *(const TRealX &)const
IMPORT_C TRealX operator *(const TRealX &aVal) const;
Description
Multiplies this extended precision number by an extended precision value.
Parameters
const TRealX &aVal |
The extended precision value to be used as the multiplier.
|
|
Return value
TRealX
|
An extended precision object containing the result.
|
|
Panic codes
MATHX |
KErrOverflow if the operation results in overflow. MATHX KErrUnderflow if the operation results in underflow.
|
|
operator/(const TRealX &)const
IMPORT_C TRealX operator/(const TRealX &aVal) const;
Description
Divides this extended precision number by an extended precision value.
Parameters
const TRealX &aVal |
The extended precision value to be used as the divisor.
|
|
Return value
TRealX
|
An extended precision object containing the result.
|
|
Panic codes
MATHX |
KErrOverflow if the operation results in overflow. MATHX KErrUnderflow if the operation results in underflow.
|
MATHX |
KErrDivideByZero if the divisor is zero.
|
|
operator%(const TRealX &)const
IMPORT_C TRealX operator%(const TRealX &aVal) const;
Description
Modulo-divides this extended precision number by an extended precision value.
Parameters
const TRealX &aVal |
The extended precision value to be used as the divisor.
|
|
Return value
TRealX
|
An extended precision object containing the result.
|
|
Panic codes
MATHX |
KErrTotalLossOfPrecision if precision is lost. MATHX KErrUnderflow if the operation results in underflow.
|
|
Add(TRealX &,const TRealX &)const
IMPORT_C TInt Add(TRealX &aResult, const TRealX &aVal) const;
Description
Adds an extended precision value to this extended precision number.
Parameters
TRealX &aResult |
On return, a reference to an extended precision object containing the result of the operation.
|
const TRealX &aVal |
The extended precision value to be added.
|
|
Return value
TInt
|
KErrNone, if the operation is successful; KErrOverflow, if the operation results in overflow; KErrUnderflow, if the operation
results in underflow.
|
|
Sub(TRealX &,const TRealX &)const
IMPORT_C TInt Sub(TRealX &aResult, const TRealX &aVal) const;
Description
Subtracts an extended precision value from this extended precision number.
Parameters
TRealX &aResult |
On return, a reference to an extended precision object containing the result of the operation.
|
const TRealX &aVal |
The extended precision value to be subtracted.
|
|
Return value
TInt
|
KErrNone, if the operation is successful; KErrOverflow, if the operation results in overflow; KErrUnderflow, if the operation
results in underflow.
|
|
Mult(TRealX &,const TRealX &)const
IMPORT_C TInt Mult(TRealX &aResult, const TRealX &aVal) const;
Description
Multiplies this extended precision number by an extended precision value.
Parameters
TRealX &aResult |
On return, a reference to an extended precision object containing the result of the operation.
|
const TRealX &aVal |
The extended precision value to be used as the multiplier.
|
|
Return value
TInt
|
KErrNone, if the operation is successful; KErrOverflow, if the operation results in overflow; KErrUnderflow, if the operation
results in underflow.
|
|
Div(TRealX &,const TRealX &)const
IMPORT_C TInt Div(TRealX &aResult, const TRealX &aVal) const;
Description
Divides this extended precision number by an extended precision value.
Parameters
TRealX &aResult |
On return, a reference to an extended precision object containing the result of the operation.
|
const TRealX &aVal |
The extended precision value to be used as the divisor.
|
|
Return value
TInt
|
KErrNone, if the operation is successful; KErrOverflow, if the operation results in overflow; KErrUnderflow, if the operation
results in underflow; KErrDivideByZero, if the divisor is zero.
|
|
Mod(TRealX &,const TRealX &)const
IMPORT_C TInt Mod(TRealX &aResult, const TRealX &aVal) const;
Description
Modulo-divides this extended precision number by an extended precision value.
Parameters
TRealX &aResult |
On return, a reference to an extended precision object containing the result of the operation.
|
const TRealX &aVal |
The extended precision value to be used as the divisor.
|
|
Return value
TInt
|
KErrNone, if the operation is successful; KErrTotalLossOfPrecision, if precision is lost; KErrUnderflow, if the operation
results in underflow.
|
|
Compare(const TRealX &)const
IMPORT_C TRealXOrder Compare(const TRealX &aVal) const;
Description
Parameters
Return value
operator==(const TRealX &)const
inline TBool operator==(const TRealX &aVal) const;
Description
Compares this extended precision number for equality with another.
Parameters
const TRealX &aVal |
A reference to the extended precision value to be compared.
|
|
Return value
TBool
|
True, if this extended precision number is equal to aVal; false, otherwise.
|
|
operator!=(const TRealX &)const
inline TBool operator!=(const TRealX &aVal) const;
Description
Compares this extended precision number for in-equality with another.
Parameters
const TRealX &aVal |
A reference to the extended precision value to be compared.
|
|
Return value
TBool
|
True, if this extended precision number is not equal to aVal; false, otherwise.
|
|
operator>=(const TRealX &)const
inline TBool operator>=(const TRealX &aVal) const;
Description
Compares this extended precision number for being greater than or equal to another.
Parameters
const TRealX &aVal |
A reference to the extended precision value to be compared.
|
|
Return value
TBool
|
True, if this extended precision number is greater than or equal to aVal, false, otherwise.
|
|
operator<=(const TRealX &)const
inline TBool operator<=(const TRealX &aVal) const;
Description
Compares this extended precision number for being less than or equal to another.
Parameters
const TRealX &aVal |
A reference to the extended precision value to be compared.
|
|
Return value
TBool
|
True, if this extended precision number is less than or equal to aVal, false, otherwise.
|
|
operator>(const TRealX &)const
inline TBool operator>(const TRealX &aVal) const;
Description
Compares this extended precision number for being greater than another.
Parameters
const TRealX &aVal |
A reference to the extended precision value to be compared.
|
|
Return value
TBool
|
True, if this extended precision number is greater than aVal, false, otherwise.
|
|
operator<(const TRealX &)const
inline TBool operator<(const TRealX &aVal) const;
Description
Compares this extended precision number for being less than another.
Parameters
const TRealX &aVal |
A reference to the extended precision value to be compared.
|
|
Return value
TBool
|
True, if this extended precision number is less than aVal, false, otherwise.
|
|
TUint32 iMantLo;
Description
The mantissa.
TUint32 iMantHi;
Description
TInt8 iSign;
Description
The sign: 0 for +, 1 for -
TUint8 iFlag;
Description
Flags: 0 for exact, 1 for rounded down, 2 for rounded up
TUint16 iExp;
Description
Exponent: biased by 32767, iExp=0 => zero, +65535 => infinity or NaN