Lines Matching refs:fValue

805     double fValue = fTime;  in convertTime()  local
809 if (fValue < 0.0) in convertTime()
812 fValue = - fValue; in convertTime()
816 fValue *= 24; in convertTime()
817 double fHoursValue = ::rtl::math::approxFloor (fValue); in convertTime()
818 fValue -= fHoursValue; in convertTime()
819 fValue *= 60; in convertTime()
820 double fMinsValue = ::rtl::math::approxFloor (fValue); in convertTime()
821 fValue -= fMinsValue; in convertTime()
822 fValue *= 60; in convertTime()
823 double fSecsValue = ::rtl::math::approxFloor (fValue); in convertTime()
824 fValue -= fSecsValue; in convertTime()
826 if (fValue > 0.00001) in convertTime()
827 f100SecsValue = ::rtl::math::round( fValue, XML_MAXDIGITSCOUNT_TIME - 5); in convertTime()
860 ::rtl::OUString a100th( ::rtl::math::doubleToUString( fValue, in convertTime()
1054 double fValue = fDateTime; in convertDateTime() local
1055 sal_Int32 nValue = static_cast <sal_Int32> (::rtl::math::approxFloor (fValue)); in convertDateTime()
1058 fValue -= nValue; in convertDateTime()
1072 if (fValue > 0.0) in convertDateTime()
1075 fValue *= 24; in convertDateTime()
1076 fHoursValue = ::rtl::math::approxFloor (fValue); in convertDateTime()
1077 fValue -= fHoursValue; in convertDateTime()
1078 fValue *= 60; in convertDateTime()
1079 fMinsValue = ::rtl::math::approxFloor (fValue); in convertDateTime()
1080 fValue -= fMinsValue; in convertDateTime()
1081 fValue *= 60; in convertDateTime()
1082 fSecsValue = ::rtl::math::approxFloor (fValue); in convertDateTime()
1083 fValue -= fSecsValue; in convertDateTime()
1084 if (fValue > 0.0) in convertDateTime()
1085 f100SecsValue = ::rtl::math::round( fValue, XML_MAXDIGITSCOUNT_TIME - nCount); in convertDateTime()
1137 ::rtl::OUString a100th( ::rtl::math::doubleToUString( fValue, in convertDateTime()