Searched refs:nValExp (Results 1 – 1 of 1) sorted by relevance
756 long nValExp = 0; // carry along exponent of mantissa in stringToDouble() local765 ++nValExp; in stringToDouble()782 if ( nValExp == 0 ) in stringToDouble()783 nValExp = nFracExp - 1; // no integer part => fraction exponent in stringToDouble()802 else if ( nValExp < 0 ) in stringToDouble()803 nValExp = 0; // no digit other than 0 after decimal point in stringToDouble()806 if ( nValExp > 0 ) in stringToDouble()807 --nValExp; // started with offset +1 at the first mantissa digit in stringToDouble()850 long nAllExp = ( bOverFlow ? 0 : nExp + nValExp ); in stringToDouble()864 fVal = rtl::math::pow10Exp( fVal, -nValExp ); in stringToDouble()
Completed in 19 milliseconds