Home
last modified time | relevance | path

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

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

Completed in 10 milliseconds