Searched refs:fExp (Results 1 – 5 of 5) sorted by relevance
1116 double SAL_CALL rtl_math_powr( double fValue, double fExp ) SAL_THROW_EXTERN_C() in rtl_math_powr() argument1118 if ((fValue == 0.0 && fExp == 0.0) || in rtl_math_powr()1119 (rtl::math::isInf( fExp ) && !rtl::math::isSignBitSet( fExp )) || in rtl_math_powr()1126 return pow(fValue, fExp); in rtl_math_powr()
191 inline double powr(double fValue, double fExp) in powr() argument193 return rtl_math_powr(fValue, fExp); in powr()
412 double SAL_CALL rtl_math_powr(double fValue, double fExp) SAL_THROW_EXTERN_C();
206 … const double fExp = ( (double) mnActDist / mnMaxWidth ) * log10( (double) MAX_TIME / MIN_TIME ); in ImplRecalcScrollValues() local207 nCurTime = (sal_uLong) ( MAX_TIME / pow( 10., fExp ) ); in ImplRecalcScrollValues()
2042 double fExp = log10(fTestNum); in GetOutputString() local2044 sal_uInt16 nDigitPre = fExp >= 0.0 ? static_cast<sal_uInt16>(ceil(fExp)) : 1; in GetOutputString()
Completed in 35 milliseconds