Home
last modified time | relevance | path

Searched refs:nSignificantBits (Results 1 – 2 of 2) sorted by relevance

/trunk/main/tools/source/generic/
H A Dfract.cxx580 void Fraction::ReduceInaccurate( unsigned nSignificantBits ) in ReduceInaccurate() argument
590 DBG_ASSERT(nSignificantBits<65, "More than 64 bit of significance is overkill!"); in ReduceInaccurate()
593 const int nMulBitsToLose = Max( ( impl_NumberOfBits( nMul ) - int( nSignificantBits ) ), 0 ); in ReduceInaccurate()
594 const int nDivBitsToLose = Max( ( impl_NumberOfBits( nDiv ) - int( nSignificantBits ) ), 0 ); in ReduceInaccurate()
/trunk/main/tools/inc/tools/
H A Dfract.hxx62 void ReduceInaccurate( unsigned nSignificantBits );