Searched refs:fFrac (Results 1 – 9 of 9) sorted by relevance
/aoo4110/main/tools/source/datetime/ |
H A D | datetime.cxx | 325 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 +=()
|
/aoo4110/main/scaddins/source/analysis/ |
H A D | financial.cxx | 278 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 D | analysishelper.cxx | 716 double fFrac = 0.0; in ParseDouble() local 802 fFrac += double( GetVal( c ) ) * fMult; in ParseDouble() 855 fInt += fFrac; in ParseDouble()
|
/aoo4110/main/sc/source/filter/excel/ |
H A D | xltools.cxx | 141 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 D | xipivot.cxx | 115 double fFrac = modf( fValue, &fInt ); in WriteToSource() local 116 short nFormatType = ((fFrac == 0.0) && (fInt != 0.0)) ? NUMBERFORMAT_DATE : in WriteToSource()
|
H A D | xeformula.cxx | 1203 double fFrac = modf( fValue, &fInt ); in ProcessDouble() local 1204 if( (fFrac == 0.0) && (0.0 <= fInt) && (fInt <= 65535.0) ) in ProcessDouble()
|
/aoo4110/main/sal/rtl/source/ |
H A D | math.cxx | 775 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()
|
/aoo4110/main/oox/source/xls/ |
H A D | biffhelper.cxx | 78 double fFrac = modf( rDecDbl.mfValue, &fInt ); in lclCalcRkFromDouble() local 79 if( (fFrac == 0.0) && (-536870912.0 <= fInt) && (fInt <= 536870911.0) ) // 2^29 in lclCalcRkFromDouble()
|
/aoo4110/main/svl/source/numbers/ |
H A D | zforfind.cxx | 192 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 142 milliseconds