Home
last modified time | relevance | path

Searched refs:nSeconds (Results 1 – 25 of 185) sorted by relevance

12345678

/dports/editors/libreoffice/libreoffice-7.2.6.2/sal/osl/unx/
H A Dtime.cxx123 time_t nSeconds; in osl_getTimeValueFromDateTime() local
147 nSeconds = mktime( &aTime ); in osl_getTimeValueFromDateTime()
154 if ( nSeconds != time_t(-1) ) in osl_getTimeValueFromDateTime()
173 pTimeVal->Seconds = nSeconds; in osl_getTimeValueFromDateTime()
176 if ( nSeconds > bias ) in osl_getTimeValueFromDateTime()
279 sal_uInt32 nSeconds; in osl_getGlobalTimer() local
289 nSeconds = ( currentTime.tv_sec - startTime.tv_sec ); in osl_getGlobalTimer()
290nSeconds = ( nSeconds * 1000 ) + static_cast<long>(( currentTime.tv_nsec - startTime.tv_nsec) / 10… in osl_getGlobalTimer()
302nSeconds = ( nSeconds * 1000 ) + static_cast<long>(( currentTime.tv_nsec - startTime.tv_nsec) / 10… in osl_getGlobalTimer()
304 nSeconds = ( nSeconds * 1000 ) + (long) (( currentTime.tv_usec - startTime.tv_usec) / 1000 ); in osl_getGlobalTimer()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sal/osl/unx/
H A Dtime.cxx123 time_t nSeconds; in osl_getTimeValueFromDateTime() local
147 nSeconds = mktime( &aTime ); in osl_getTimeValueFromDateTime()
154 if ( nSeconds != time_t(-1) ) in osl_getTimeValueFromDateTime()
173 pTimeVal->Seconds = nSeconds; in osl_getTimeValueFromDateTime()
176 if ( nSeconds > bias ) in osl_getTimeValueFromDateTime()
279 sal_uInt32 nSeconds; in osl_getGlobalTimer() local
289 nSeconds = ( currentTime.tv_sec - startTime.tv_sec ); in osl_getGlobalTimer()
290nSeconds = ( nSeconds * 1000 ) + static_cast<long>(( currentTime.tv_nsec - startTime.tv_nsec) / 10… in osl_getGlobalTimer()
302nSeconds = ( nSeconds * 1000 ) + static_cast<long>(( currentTime.tv_nsec - startTime.tv_nsec) / 10… in osl_getGlobalTimer()
304 nSeconds = ( nSeconds * 1000 ) + (long) (( currentTime.tv_usec - startTime.tv_usec) / 1000 ); in osl_getGlobalTimer()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/core/tool/
H A Drefreshtimer.cxx54 ScRefreshTimer::ScRefreshTimer( sal_uLong nSeconds ) : ppControl(nullptr) in ScRefreshTimer() argument
56 SetTimeout( nSeconds * 1000 ); in ScRefreshTimer()
110 void ScRefreshTimer::SetRefreshDelay( sal_uLong nSeconds ) in SetRefreshDelay() argument
113 if ( bActive && !nSeconds ) in SetRefreshDelay()
115 SetTimeout( nSeconds * 1000 ); in SetRefreshDelay()
116 if ( !bActive && nSeconds ) in SetRefreshDelay()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/core/tool/
H A Drefreshtimer.cxx54 ScRefreshTimer::ScRefreshTimer( sal_uLong nSeconds ) : ppControl(nullptr) in ScRefreshTimer() argument
56 SetTimeout( nSeconds * 1000 ); in ScRefreshTimer()
110 void ScRefreshTimer::SetRefreshDelay( sal_uLong nSeconds ) in SetRefreshDelay() argument
113 if ( bActive && !nSeconds ) in SetRefreshDelay()
115 SetTimeout( nSeconds * 1000 ); in SetRefreshDelay()
116 if ( !bActive && nSeconds ) in SetRefreshDelay()
/dports/editors/libreoffice/libreoffice-7.2.6.2/basegfx/source/tools/
H A Dsystemdependentdata.cxx50 const sal_uInt32 nSeconds = 60; // HoldCyclesInSeconds in calculateCombinedHoldCyclesInSeconds() local
53 sal_uInt32 nResult(0 == nSeconds ? 1 : nSeconds); in calculateCombinedHoldCyclesInSeconds()
66 … nResult = static_cast<sal_uInt32>((fMultiplierSeconds * nSeconds) / sqrt(nBytes * fScaleToMB)); in calculateCombinedHoldCyclesInSeconds()
75 if(nResult > nSeconds) in calculateCombinedHoldCyclesInSeconds()
77 nResult = nSeconds; in calculateCombinedHoldCyclesInSeconds()
/dports/audio/mac/mac-3.99-u4-b5-s7/src/Shared/
H A DWAVInfoDialog.cpp96 …int nSeconds = nAudioBytes / wfeWAV.nAvgBytesPerSec; int nMinutes = nSeconds / 60; nSeconds = nSec… in InitDialog() local
97 if (nHours > 0) _stprintf(cTemp, _T("Length: %d:%02d:%02d"), nHours, nMinutes, nSeconds); in InitDialog()
98 else if (nMinutes > 0) _stprintf(cTemp, _T("Length: %d:%02d"), nMinutes, nSeconds); in InitDialog()
99 else _stprintf(cTemp, _T("Length: 0:%02d"), nSeconds); in InitDialog()
H A DAPEInfoDialog.cpp166 …int nSeconds = pAPEDecompress->GetInfo(APE_INFO_LENGTH_MS) / 1000; int nMinutes = nSeconds / 60; n… in DialogProc() local
167 if (nHours > 0) _stprintf(cTemp, _T("Length: %d:%02d:%02d"), nHours, nMinutes, nSeconds); in DialogProc()
168 else if (nMinutes > 0) _stprintf(cTemp, _T("Length: %d:%02d"), nMinutes, nSeconds); in DialogProc()
169 else _stprintf(cTemp, _T("Length: 0:%02d"), nSeconds); in DialogProc()
/dports/editors/libreoffice/libreoffice-7.2.6.2/forms/source/xforms/xpathlib/
H A Dxpathlib.cxx354 sal_Int32 nSeconds = nDays * 24 * 60 * 60; in xforms_secondsFromDateTimeFunction() local
356 nSeconds += aDateTime.GetMin() * 60; in xforms_secondsFromDateTimeFunction()
357 nSeconds += aDateTime.GetSec(); in xforms_secondsFromDateTimeFunction()
358 xmlXPathReturnNumber(ctxt, nSeconds); in xforms_secondsFromDateTimeFunction()
434 sal_Int32 nSeconds = 0; in xforms_secondsFunction() local
438 nSeconds += nMinutes*60; in xforms_secondsFunction()
439 nSeconds += nHours*60*60; in xforms_secondsFunction()
440 nSeconds += nDays*24*60*60; in xforms_secondsFunction()
443 nSeconds = 0 - nSeconds; in xforms_secondsFunction()
444 xmlXPathReturnNumber(ctxt, nSeconds); in xforms_secondsFunction()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/forms/source/xforms/xpathlib/
H A Dxpathlib.cxx355 sal_Int32 nSeconds = nDays * 24 * 60 * 60; in xforms_secondsFromDateTimeFunction() local
357 nSeconds += aDateTime.GetMin() * 60; in xforms_secondsFromDateTimeFunction()
358 nSeconds += aDateTime.GetSec(); in xforms_secondsFromDateTimeFunction()
359 xmlXPathReturnNumber(ctxt, nSeconds); in xforms_secondsFromDateTimeFunction()
435 sal_Int32 nSeconds = 0; in xforms_secondsFuction() local
439 nSeconds += nMinutes*60; in xforms_secondsFuction()
440 nSeconds += nHours*60*60; in xforms_secondsFuction()
441 nSeconds += nDays*24*60*60; in xforms_secondsFuction()
444 nSeconds = 0 - nSeconds; in xforms_secondsFuction()
445 xmlXPathReturnNumber(ctxt, nSeconds); in xforms_secondsFuction()
[all …]
/dports/audio/mous/mous-2.0.1/deps/MAC_SDK/Source/Shared/
H A DWAVInfoDialog.cpp97 …int nSeconds = nAudioBytes / wfeWAV.nAvgBytesPerSec; int nMinutes = nSeconds / 60; nSeconds = nSec… in InitDialog() local
98 … _stprintf_s(cTemp, _countof(cTemp) - 1, _T("Length: %d:%02d:%02d"), nHours, nMinutes, nSeconds); in InitDialog()
99 … (nMinutes > 0) _stprintf_s(cTemp, _countof(cTemp) - 1, _T("Length: %d:%02d"), nMinutes, nSeconds); in InitDialog()
100 else _stprintf_s(cTemp, _countof(cTemp) - 1, _T("Length: 0:%02d"), nSeconds); in InitDialog()
H A DAPEInfoDialog.cpp166 …int nSeconds = pAPEDecompress->GetInfo(APE_INFO_LENGTH_MS) / 1000; int nMinutes = nSeconds / 60; n… in DialogProc() local
167 …f (nHours > 0) _stprintf_s(cTemp, 1024, _T("Length: %d:%02d:%02d"), nHours, nMinutes, nSeconds); in DialogProc()
168 … else if (nMinutes > 0) _stprintf_s(cTemp, 1024, _T("Length: %d:%02d"), nMinutes, nSeconds); in DialogProc()
169 else _stprintf_s(cTemp, 1024, _T("Length: 0:%02d"), nSeconds); in DialogProc()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/basegfx/source/tools/
H A Dsystemdependentdata.cxx80 const sal_uInt32 nSeconds = 60; // HoldCyclesInSeconds in calculateCombinedHoldCyclesInSeconds() local
83 sal_uInt32 nResult(0 == nSeconds ? 1 : nSeconds); in calculateCombinedHoldCyclesInSeconds()
96 … nResult = static_cast<sal_uInt32>((fMultiplierSeconds * nSeconds) / sqrt(nBytes * fScaleToMB)); in calculateCombinedHoldCyclesInSeconds()
105 if(nResult > nSeconds) in calculateCombinedHoldCyclesInSeconds()
107 nResult = nSeconds; in calculateCombinedHoldCyclesInSeconds()
/dports/games/libretro-fbalpha/fbalpha-84eb9d9/src/burn/drv/neogeo/
H A Dneo_upd4990a.cpp7 UINT32 nSeconds; UINT32 nMinutes; UINT32 nHours; member
49 uPD4990A.nSeconds = 0; in uPD4990AInit()
57 uPD4990A.nSeconds = tmLocalTime->tm_sec; in uPD4990AInit()
105 uPD4990A.nSeconds++; in uPD4990AUpdate()
106 if (uPD4990A.nSeconds >= 60) { in uPD4990AUpdate()
107 uPD4990A.nSeconds = 0; in uPD4990AUpdate()
185 uPD4990A.nSeconds = ((uPD4990A.nRegister[0] >> 0) & 0x0F); in uPD4990AWrite()
186 uPD4990A.nSeconds += ((uPD4990A.nRegister[0] >> 4) & 0x0F) * 10; in uPD4990AWrite()
202 uPD4990A.nRegister[0] = (uPD4990A.nSeconds % 10) << 0; in uPD4990AWrite()
203 uPD4990A.nRegister[0] |= (uPD4990A.nSeconds / 10) << 4; in uPD4990AWrite()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap.Events.Edir.EventData/
H A DDSETimeStamp.cs43 protected int nSeconds; field in Novell.Directory.Ldap.Events.Edir.DSETimeStamp
48 return nSeconds;
72 nSeconds = ((Asn1Integer)dseObject.get_Renamed(0)).intValue(); in DSETimeStamp()
84 buf.AppendFormat("[TimeStamp (seconds={0})", nSeconds); in ToString()
/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/burn/drv/neogeo/
H A Dneo_upd4990a.cpp7 UINT32 nSeconds; UINT32 nMinutes; UINT32 nHours; member
46 uPD4990A.nSeconds = tmLocalTime.tm_sec; in uPD4990AInit()
93 uPD4990A.nSeconds++; in uPD4990AUpdate()
94 if (uPD4990A.nSeconds >= 60) { in uPD4990AUpdate()
95 uPD4990A.nSeconds = 0; in uPD4990AUpdate()
173 uPD4990A.nSeconds = ((uPD4990A.nRegister[0] >> 0) & 0x0F); in uPD4990AWrite()
174 uPD4990A.nSeconds += ((uPD4990A.nRegister[0] >> 4) & 0x0F) * 10; in uPD4990AWrite()
190 uPD4990A.nRegister[0] = (uPD4990A.nSeconds % 10) << 0; in uPD4990AWrite()
191 uPD4990A.nRegister[0] |= (uPD4990A.nSeconds / 10) << 4; in uPD4990AWrite()
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/docker/docker/cli/command/container/
H A Drestart.go16 nSeconds int member
38 …flags.IntVarP(&opts.nSeconds, "time", "t", 10, "Seconds to wait for stop before killing the contai…
47 timeoutValue := time.Duration(opts.nSeconds) * time.Second
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/cli/cli-20.10.2/cli/command/container/
H A Drestart.go16 nSeconds int member
38 …flags.IntVarP(&opts.nSeconds, "time", "t", 10, "Seconds to wait for stop before killing the contai…
47 timeoutValue := time.Duration(opts.nSeconds) * time.Second
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/docker/cli/cli/command/container/
H A Drestart.go16 nSeconds int member
38 …flags.IntVarP(&opts.nSeconds, "time", "t", 10, "Seconds to wait for stop before killing the contai…
47 timeoutValue := time.Duration(opts.nSeconds) * time.Second
/dports/sysutils/docker/docker-ce-18.09.5/components/cli/cli/command/container/
H A Drestart.go16 nSeconds int member
38 …flags.IntVarP(&opts.nSeconds, "time", "t", 10, "Seconds to wait for stop before killing the contai…
47 timeoutValue := time.Duration(opts.nSeconds) * time.Second
/dports/devel/upp/upp/bazaar/plugin/gdal/frmts/iris/
H A Dirisdataset.cpp779 int nSeconds = CPL_LSBSINT32PTR(poDS->abyHeader+20+12); in Open() local
781 int nHour = (nSeconds - (nSeconds%3600)) /3600; in Open()
782 int nMinute = ((nSeconds - nHour * 3600) - (nSeconds - nHour * 3600)%60)/ 60; in Open()
783 int nSecond = nSeconds - nHour * 3600 - nMinute * 60; in Open()
792 nSeconds = CPL_LSBSINT32PTR(poDS->abyHeader+32+12); in Open()
794 nHour = (nSeconds - (nSeconds%3600)) /3600; in Open()
795 nMinute = ((nSeconds - nHour * 3600) - (nSeconds - nHour * 3600)%60)/ 60; in Open()
796 nSecond = nSeconds - nHour * 3600 - nMinute * 60; in Open()
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/frmts/iris/
H A Dirisdataset.cpp860 const int nSeconds = CPL_LSBSINT32PTR(poDS->abyHeader+20+12); in Open() local
862 const int nHour = (nSeconds - (nSeconds % 3600)) / 3600; in Open()
864 ((nSeconds - nHour * 3600) - (nSeconds - nHour * 3600) % 60) / 60; in Open()
865 const int nSecond = nSeconds - nHour * 3600 - nMinute * 60; in Open()
878 const int nSeconds = CPL_LSBSINT32PTR(poDS->abyHeader+32+12); in Open() local
880 const int nHour = (nSeconds - (nSeconds % 3600)) / 3600; in Open()
882 ((nSeconds - nHour * 3600) - (nSeconds - nHour * 3600) % 60) / 60; in Open()
883 const int nSecond = nSeconds - nHour * 3600 - nMinute * 60; in Open()
/dports/graphics/gdal/gdal-3.3.3/frmts/iris/
H A Dirisdataset.cpp860 const int nSeconds = CPL_LSBSINT32PTR(poDS->abyHeader+20+12); in Open() local
862 const int nHour = (nSeconds - (nSeconds % 3600)) / 3600; in Open()
864 ((nSeconds - nHour * 3600) - (nSeconds - nHour * 3600) % 60) / 60; in Open()
865 const int nSecond = nSeconds - nHour * 3600 - nMinute * 60; in Open()
878 const int nSeconds = CPL_LSBSINT32PTR(poDS->abyHeader+32+12); in Open() local
880 const int nHour = (nSeconds - (nSeconds % 3600)) / 3600; in Open()
882 ((nSeconds - nHour * 3600) - (nSeconds - nHour * 3600) % 60) / 60; in Open()
883 const int nSecond = nSeconds - nHour * 3600 - nMinute * 60; in Open()
/dports/graphics/py-gdal/gdal-3.3.3/frmts/iris/
H A Dirisdataset.cpp860 const int nSeconds = CPL_LSBSINT32PTR(poDS->abyHeader+20+12); in Open() local
862 const int nHour = (nSeconds - (nSeconds % 3600)) / 3600; in Open()
864 ((nSeconds - nHour * 3600) - (nSeconds - nHour * 3600) % 60) / 60; in Open()
865 const int nSecond = nSeconds - nHour * 3600 - nMinute * 60; in Open()
878 const int nSeconds = CPL_LSBSINT32PTR(poDS->abyHeader+32+12); in Open() local
880 const int nHour = (nSeconds - (nSeconds % 3600)) / 3600; in Open()
882 ((nSeconds - nHour * 3600) - (nSeconds - nHour * 3600) % 60) / 60; in Open()
883 const int nSecond = nSeconds - nHour * 3600 - nMinute * 60; in Open()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/inc/
H A Drefreshtimer.hxx48 ScRefreshTimer( sal_uLong nSeconds );
61 void SetRefreshDelay( sal_uLong nSeconds );
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/inc/
H A Drefreshtimer.hxx49 ScRefreshTimer( sal_uLong nSeconds );
62 void SetRefreshDelay( sal_uLong nSeconds );

12345678