Lines Matching refs:nSeconds

1977 	sal_Int32 nSeconds = nHour;  in RTLFUNC()  local
1978 nSeconds *= 3600; in RTLFUNC()
1979 nSeconds += nMinute * 60; in RTLFUNC()
1980 nSeconds += nSecond; in RTLFUNC()
1981 double nDays = ((double)nSeconds) / (double)(86400.0); in RTLFUNC()
2122 sal_Int32 nSeconds = (sal_Int32)(nFrac + 0.5); in implGetHour() local
2123 sal_Int16 nHour = (sal_Int16)(nSeconds / 3600); in implGetHour()
2146 sal_Int32 nSeconds = (sal_Int32)(nFrac + 0.5); in implGetMinute() local
2147 sal_Int16 nTemp = (sal_Int16)(nSeconds % 3600); in implGetMinute()
2185 sal_Int32 nSeconds = (sal_Int32)(nFrac + 0.5); in implGetSecond() local
2186 sal_Int16 nTemp = (sal_Int16)(nSeconds / 3600); in implGetSecond()
2187 nSeconds -= nTemp * 3600; in implGetSecond()
2188 nTemp = (sal_Int16)(nSeconds / 60); in implGetSecond()
2189 nSeconds -= nTemp * 60; in implGetSecond()
2191 sal_Int16 nRet = (sal_Int16)nSeconds; in implGetSecond()
2215 long nSeconds = aTime.GetHour(); in Now_Impl() local
2216 nSeconds *= 3600; in Now_Impl()
2217 nSeconds += aTime.GetMin() * 60; in Now_Impl()
2218 nSeconds += aTime.GetSec(); in Now_Impl()
2219 double nDays = ((double)nSeconds) / (double)(24.0*3600.0); in Now_Impl()
2255 long nSeconds=aTime.GetHour(); in RTLFUNC() local
2256 nSeconds *= 3600; in RTLFUNC()
2257 nSeconds += aTime.GetMin() * 60; in RTLFUNC()
2258 nSeconds += aTime.GetSec(); in RTLFUNC()
2259 double nDays = (double)nSeconds * ( 1.0 / (24.0*3600.0) ); in RTLFUNC()
2296 long nSeconds = aTime.GetHour(); in RTLFUNC() local
2297 nSeconds *= 3600; in RTLFUNC()
2298 nSeconds += aTime.GetMin() * 60; in RTLFUNC()
2299 nSeconds += aTime.GetSec(); in RTLFUNC()
2300 rPar.Get(0)->PutDate( (double)nSeconds ); in RTLFUNC()
3099 long nSeconds = aTime.GetHour(); in RTLFUNC() local
3100 nSeconds *= 3600; in RTLFUNC()
3101 nSeconds += aTime.GetMin() * 60; in RTLFUNC()
3102 nSeconds += aTime.GetSec(); in RTLFUNC()
3103 double nDays = ((double)nSeconds) / (double)(24.0*3600.0); in RTLFUNC()