Lines Matching refs:fTime
2620 double fTime = fNumber * 86400.0; in ImpGetTimeOutput() local
2621 fTime = ::rtl::math::round( fTime, int(nCntPost) ); in ImpGetTimeOutput()
2622 if (bSign && fTime == 0.0) in ImpGetTimeOutput()
2625 if( floor( fTime ) > _D_MAX_U_LONG_ ) in ImpGetTimeOutput()
2630 sal_uLong nSeconds = (sal_uLong)floor( fTime ); in ImpGetTimeOutput()
2632 String sSecStr( ::rtl::math::doubleToUString( fTime-nSeconds, in ImpGetTimeOutput()
3143 double fTime = (fNumber - floor( fNumber )) * 86400.0; in ImpGetDateTimeOutput() local
3144 fTime = ::rtl::math::round( fTime, int(nCntPost) ); in ImpGetDateTimeOutput()
3145 if (fTime >= 86400.0) in ImpGetDateTimeOutput()
3148 fTime -= 86400.0; in ImpGetDateTimeOutput()
3149 fNumber = floor( fNumber + 0.5) + fTime; in ImpGetDateTimeOutput()
3162 sal_uLong nSeconds = (sal_uLong)floor( fTime ); in ImpGetDateTimeOutput()
3163 String sSecStr( ::rtl::math::doubleToUString( fTime-nSeconds, in ImpGetDateTimeOutput()