Home
last modified time | relevance | path

Searched refs:fFrac (Results 1 – 9 of 9) sorted by relevance

/trunk/main/tools/source/datetime/
H A Ddatetime.cxx325 double fInt, fFrac; in operator +=() local
329 fFrac = fInt <= fTimeInDays ? 0.0 : fTimeInDays - fInt; in operator +=()
334 fFrac = fInt >= fTimeInDays ? 0.0 : fTimeInDays - fInt; in operator +=()
337 if ( fFrac ) in operator +=()
340 fFrac *= 24UL * 60 * 60 * 1000; // time expressed in milliseconds in operator +=()
341 aTime.MakeTimeFromMS( long(fFrac) ); // method handles negative ms in operator +=()
/trunk/main/scaddins/source/analysis/
H A Dfinancial.cxx278 double fFrac = nFrac; in getDollarfr() local
282 fRet *= fFrac; in getDollarfr()
284 fRet *= pow( 10.0, -ceil( log10( fFrac ) ) ); in getDollarfr()
298 double fFrac = nFrac; in getDollarde() local
302 fRet /= fFrac; in getDollarde()
304 fRet *= pow( 10.0, ceil( log10( fFrac ) ) ); in getDollarde()
H A Danalysishelper.cxx716 double fFrac = 0.0; in ParseDouble() local
802 fFrac += double( GetVal( c ) ) * fMult; in ParseDouble()
855 fInt += fFrac; in ParseDouble()
/trunk/main/sc/source/filter/excel/
H A Dxltools.cxx141 double fFrac, fInt; in GetRKFromDouble() local
144 fFrac = modf( fValue, &fInt ); in GetRKFromDouble()
145 if( (fFrac == 0.0) && (fInt >= -536870912.0) && (fInt <= 536870911.0) ) // 2^29 in GetRKFromDouble()
154 fFrac = modf( fValue * 100.0, &fInt ); in GetRKFromDouble()
155 if( (fFrac == 0.0) && (fInt >= -536870912.0) && (fInt <= 536870911.0) ) in GetRKFromDouble()
H A Dxipivot.cxx115 double fFrac = modf( fValue, &fInt ); in WriteToSource() local
116 short nFormatType = ((fFrac == 0.0) && (fInt != 0.0)) ? NUMBERFORMAT_DATE : in WriteToSource()
H A Dxeformula.cxx1203 double fFrac = modf( fValue, &fInt ); in ProcessDouble() local
1204 if( (fFrac == 0.0) && (0.0 <= fInt) && (fInt <= 65535.0) ) in ProcessDouble()
/trunk/main/sal/rtl/source/
H A Dmath.cxx775 double fFrac = 0.0; in stringToDouble() local
795 fFrac = fFrac * 10.0 + static_cast<double>(c - CharT('0')); in stringToDouble()
800 if ( fFrac != 0.0 ) in stringToDouble()
801 fVal += rtl::math::pow10Exp( fFrac, nFracExp ); in stringToDouble()
/trunk/main/oox/source/xls/
H A Dbiffhelper.cxx78 double fFrac = modf( rDecDbl.mfValue, &fInt ); in lclCalcRkFromDouble() local
79 if( (fFrac == 0.0) && (-536870912.0 <= fInt) && (fInt <= 536870911.0) ) // 2^29 in lclCalcRkFromDouble()
/trunk/main/svl/source/numbers/
H A Dzforfind.cxx192 double fFrac = 0.0; in StringToDouble() local
206 fFrac = fFrac * 10.0 + (double) (rStr.GetChar(nPos) - '0'); in StringToDouble()
211 if ( fFrac ) in StringToDouble()
212 return fNum + ::rtl::math::pow10Exp( fFrac, nExp ); in StringToDouble()

Completed in 92 milliseconds