Searched refs:nSignificantBits (Results 1 – 2 of 2) sorted by relevance
582 void Fraction::ReduceInaccurate( unsigned nSignificantBits ) in ReduceInaccurate() argument592 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()
62 void ReduceInaccurate( unsigned nSignificantBits );
Completed in 7 milliseconds