Home
last modified time | relevance | path

Searched refs:totalTime (Results 1 – 25 of 1765) sorted by relevance

12345678910>>...71

/dports/science/InsightToolkit/ITK-5.0.1/Modules/ThirdParty/OpenJPEG/src/openjpeg/
H A Dprofile.c99 #define proftracef(id,totalTime) \ argument
106 #define proftracep(id,totalTime) \ argument
117 OPJ_FLOAT64 totalTime = 0.; in _ProfSave() local
134 proftracef(PGROUP_DWT,totalTime); in _ProfSave()
135 proftracef(PGROUP_T1,totalTime); in _ProfSave()
136 proftracef(PGROUP_T2,totalTime); in _ProfSave()
147 OPJ_FLOAT64 totalTime = 0.; in _ProfPrint() local
161 proftracep(PGROUP_MCT, totalTime); in _ProfPrint()
162 proftracep(PGROUP_DWT, totalTime); in _ProfPrint()
163 proftracep(PGROUP_T1, totalTime); in _ProfPrint()
[all …]
/dports/misc/vxl/vxl-3.3.2/v3p/openjpeg2/
H A Dprofile.c99 #define proftracef(id,totalTime) \ argument
106 #define proftracep(id,totalTime) \ argument
117 OPJ_FLOAT64 totalTime = 0.; in _ProfSave() local
134 proftracef(PGROUP_DWT,totalTime); in _ProfSave()
135 proftracef(PGROUP_T1,totalTime); in _ProfSave()
136 proftracef(PGROUP_T2,totalTime); in _ProfSave()
147 OPJ_FLOAT64 totalTime = 0.; in _ProfPrint() local
161 proftracep(PGROUP_MCT, totalTime); in _ProfPrint()
162 proftracep(PGROUP_DWT, totalTime); in _ProfPrint()
163 proftracep(PGROUP_T1, totalTime); in _ProfPrint()
[all …]
/dports/devel/kyra/grinliz/
H A Dglperformance.cpp60 totalTime = 0; in PerformanceData()
73 map[i]->totalTime = 0; in Clear()
87 total += map[i]->totalTime; in GetData()
104 if ( profile.totalTime == 0 ) in GetData()
105 profile.totalTime = 1; in GetData()
111 profile.item[i].totalTime = (U32) (map[i]->totalTime >> lowBit); in GetData()
112 if ( profile.item[i].totalTime == 0 ) in GetData()
113 profile.item[i].totalTime = 1; in GetData()
122 {return (_X.totalTime > _Y.totalTime ); } in operator ()()
148 profile.item[i].totalTime, in Dump()
[all …]
/dports/www/matomo/piwik/plugins/CoreHome/Columns/
H A DVisitTotalTime.php34 $totalTime = Config::getInstance()->Tracker['default_time_one_page_visit'];
35 $totalTime = $this->cleanupVisitTotalTime($totalTime);
37 return $totalTime;
50 $totalTime = 1 + $request->getCurrentTimestamp() - $firstActionTime;
51 $totalTime = $this->cleanupVisitTotalTime($totalTime);
53 return $totalTime;
68 $totalTime = $visitor->getVisitorColumn('visit_total_time');
73 $totalTime = $totalTime + $request->getParam('idgoal');
75 $totalTime = $totalTime + 2;
77 return $this->cleanupVisitTotalTime($totalTime);
/dports/math/jts/jts-jts-1.18.1/modules/core/src/test/java/test/jts/geom/
H A DCoordinateSequenceExperiment2.java59 long totalTime = endTime - startTime; in run() local
60 String totalTimeStr = totalTime < 10000 ? totalTime + " ms" in run()
61 : totalTime / 1000.0 + " s"; in run()
70 totalTime = endTime - startTime; in run()
71 totalTimeStr = totalTime < 10000 ? totalTime + " ms" in run()
72 : totalTime / 1000.0 + " s"; in run()
86 long totalTime = endTime - startTime;
87 String totalTimeStr = totalTime < 10000 ? totalTime + " ms"
88 : totalTime / 1000.0 + " s";
100 totalTime = endTime - startTime;
[all …]
/dports/archivers/lazperf/laz-perf-2.0.0/cpp/benchmarks/
H A Dbrute_point10.cpp57 totalTime += common::since(tp); in putBytes()
63 totalTime += common::since(tp); in putByte()
69 totalTime += common::since(tp); in getByte()
79 totalTime += common::since(tp); in getBytes()
85 float totalTime; member
146 encoderStreamOverhead = s.totalTime; in main()
148 s.totalTime = 0.0f; in main()
154 s.totalTime = 0.0f; in main()
185 decoderStreamOverhead = s.totalTime; in main()
186 decompTime -= s.totalTime; in main()
[all …]
/dports/math/jts/jts-jts-1.18.1/modules/core/src/main/java/org/locationtech/jts/util/
H A DStopwatch.java24 private long totalTime = 0; field in Stopwatch
45 return totalTime; in stop()
50 totalTime = 0; in reset()
58 return totalTime; in split()
66 totalTime += elapsedTime; in updateTotalTime()
72 return totalTime; in getTime()
77 long totalTime = getTime(); in getTimeString() local
78 return getTimeString(totalTime); in getTimeString()
/dports/audio/soundkonverter/soundkonverter-3.0.1/src/
H A Dprogressindicator.cpp67 totalTime = processedTime = 0; in ProgressIndicator()
120 totalTime += timeDelta; in timeChanged()
122 if( totalTime > 0 ) in timeChanged()
123 pBar->setRange( 0, (int)totalTime ); in timeChanged()
137 totalTime -= processedTime; in finished()
138 if( totalTime < 0 ) in finished()
139 totalTime = 0.0f; in finished()
144 pBar->setRange( 0, totalTime > 0 ? (int)totalTime : 1 ); in finished()
146 pBar->setValue( totalTime > 0 ? 0 : 1 ); in finished()
187 const float remainingProcessTime = totalTime - currentProcessedTime; in update()
H A Dconvertitem.cpp57 float totalTime = 0.0f; in updateTimes() local
59 totalTime += getTime; in updateTimes()
77 totalTime += time; in updateTimes()
83 totalTime += replaygainTime; in updateTimes()
87 getTime *= length/totalTime; in updateTimes()
90 convertTimes[i] *= length/totalTime; in updateTimes()
92 replaygainTime *= length/totalTime; in updateTimes()
/dports/graphics/pikopixel/PikoPixel.Sources.1.0-b10/PikoPixel/
H A DPPOptional_CanvasSpeedCheck.m109 NSTimeInterval totalTime;
142 totalTime = 0;
151 totalTime -= [NSDate timeIntervalSinceReferenceDate];
171 totalTime += [NSDate timeIntervalSinceReferenceDate];
205 totalTime = 0;
214 totalTime -= [NSDate timeIntervalSinceReferenceDate];
234 totalTime += [NSDate timeIntervalSinceReferenceDate];
254 totalTime = 0;
263 totalTime -= [NSDate timeIntervalSinceReferenceDate];
268 totalTime += [NSDate timeIntervalSinceReferenceDate];
[all …]
/dports/finance/prestashop/prestashop/src/Core/Domain/Customer/QueryResult/
H A DLastConnectionInformation.php52 private $totalTime; variable in PrestaShop\\PrestaShop\\Core\\Domain\\Customer\\QueryResult\\LastConnectionInformation
68 * @param string $totalTime
76 $totalTime, argument
83 $this->totalTime = $totalTime;
117 return $this->totalTime;
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/Source/ui_shared/
H A DStatsManager.cpp32 uint64 totalTime = 0; in GetProfilingInfo() local
37 totalTime += zoneInfo.currentValue; in GetProfilingInfo()
46 …float avgRatioSpent = (totalTime != 0) ? static_cast<double>(zoneInfo.currentValue) / static_cast<… in GetProfilingInfo()
56 …float totalAvgMsSpent = (m_frames != 0) ? static_cast<double>(totalTime) / static_cast<double>(m_f… in GetProfilingInfo()
102 zoneInfo.currentValue += zone.totalTime; in OnProfileFrameDone()
103 if(zone.totalTime != 0) in OnProfileFrameDone()
105 zoneInfo.minValue = std::min<uint64>(zoneInfo.minValue, zone.totalTime); in OnProfileFrameDone()
107 zoneInfo.maxValue = std::max<uint64>(zoneInfo.maxValue, zone.totalTime); in OnProfileFrameDone()
/dports/multimedia/onevpl/oneVPL-2022.0.6/tools/legacy/sample_common/include/
H A Dtime_statistics.h41 totalTime += delta; in StopTimeMeasurement()
84 (double)totalTime, in PrintStatistics()
98 return (numMeasurements ? totalTime / numMeasurements : 0);
101 return (numMeasurements ? totalTime / numMeasurements : 0) * 1000;
121 return inSeconds ? totalTime : totalTime * 1000;
125 totalTime = 0; in ResetStatistics()
138 mfxF64 totalTime; variable
/dports/multimedia/intel-media-sdk/MediaSDK-intel-mediasdk-22.1.0/samples/sample_common/include/
H A Dtime_statistics.h62 totalTime+=delta; in StopTimeMeasurement()
105 prefix,totalTime,numMeasurements, in PrintStatistics()
119 return (numMeasurements ? totalTime / numMeasurements : 0);
123 return (numMeasurements ? totalTime / numMeasurements : 0) * 1000;
146 return inSeconds ? totalTime : totalTime * 1000;
151 totalTime=0; in ResetStatistics()
164 mfxF64 totalTime; variable
/dports/databases/grass7/grass-7.8.6/raster/r.viewshed/
H A Dmain.cpp92 Rtimer totalTime);
244 Rtimer totalTime, outputTime, sweepTime; in main() local
247 rt_start(totalTime); in main()
260 rt_stop(totalTime); in main()
338 rt_start(totalTime); in main()
359 rt_stop(totalTime); in main()
379 rt_start(totalTime); in main()
402 rt_stop(totalTime); in main()
404 print_timings_external_memory(totalTime, sweepTime, in main()
671 rt_sprint_safe(timeused, totalTime); in print_timings_internal()
[all …]
/dports/x11/virtualgl/virtualgl-3.0/common/
H A DProfiler.cpp29 mbytes(0.0), mpixels(0.0), totalTime(0.0), start(0.0), frames(0), in Profiler()
75 totalTime += now - start; in endFrame()
81 if(totalTime > interval || (now - lastFrame) > interval) in endFrame()
87 snprintf(&temps[i], 255 - i, "- %7.2f Mpixels/sec", mpixels / totalTime); in endFrame()
92 snprintf(&temps[i], 255 - i, "- %7.2f fps", frames / totalTime); in endFrame()
98 mbytes * 8.0 / totalTime, mpixels * 3. / mbytes); in endFrame()
102 totalTime = 0.; mpixels = 0.; frames = 0.; mbytes = 0.; in endFrame()
/dports/math/latte-integrale/latte-version_1_7_6/code/latte/integration/
H A DintegrateTest.cpp246 vector<float> totalTime; in main() local
247 totalTime.resize(integrateTimeVector.size()); in main()
251 totalTime[i] = integrateTimeVector[i]; in main()
254 totalTime[i] += loadTimeVector[i]; in main()
257 totalTime[i] += decomposeTimeVector[i]; in main()
264 for(int i = 0; i < totalTime.size(); ++i) in main()
265 avgTime += totalTime[i]; in main()
267 avgTime /= totalTime.size(); in main()
269 for(int i = 0; i < totalTime.size(); ++i) in main()
270 sdTime += (avgTime - totalTime[i])*(avgTime - totalTime[i]); in main()
[all …]
/dports/games/lizzie/lizzie-0.6-105-gd0e7040/src/main/java/featurecat/benchmark/
H A DStopwatch.java32 long totalTime = lastTime - startTime; in print() local
34 System.out.printf("%5.1f%% %s\n", 100.0 * times.get(marker) / totalTime, marker); in print()
36 System.out.println("in " + totalTime / 1_000_000.0 + " ms"); in print()
41 long totalTime = System.nanoTime() - startTime; in printTimePerAction() local
42 System.out.println((totalTime / 1_000_000.0 / numActionsExecuted) + " ms per action"); in printTimePerAction()
44 numActionsExecuted + " total actions executed in " + totalTime / 1_000_000_000.0 + " s"); in printTimePerAction()
/dports/science/opensph/sph-7de6c044339f649e3d19e61f735a6a24572b792a/core/system/
H A DProfiler.cpp31 uint64_t totalTime = 0; in getStatistics() local
34 totalTime += iter.second.duration; in getStatistics()
37 s.relativeTime = float(s.totalTime) / float(totalTime); in getStatistics()
40 return s1.totalTime > s2.totalTime; in getStatistics()
49 … ss << std::setw(45) << std::left << s.name << " | " << std::setw(10) << std::right << s.totalTime in printStatistics()
/dports/multimedia/baka-mplayer/Baka-MPlayer-2.0.4/src/widgets/
H A Dseekbar.cpp14 totalTime(0) in SeekBar()
22 totalTime = _totalTime; in setTracking()
26 tick = ((double)tick/totalTime)*maximum(); in setTracking()
46 if(totalTime != 0) in mouseMoveEvent()
49 …lueFromPosition(minimum(), maximum(), event->x(), width())*(double)totalTime/maximum(), totalTime), in mouseMoveEvent()
/dports/cad/ngspice_rework/ngspice-35/src/spicelib/devices/numd/
H A Dnumdload.c35 double startTime, startTime2, totalTime, totalTime2; in NUMDload() local
97 totalTime = 0.0; in NUMDload()
220 pDevice->pStats->totalTime[STAT_SETUP] += totalTime2; in NUMDload()
221 pDevice->pStats->totalTime[STAT_DC] -= totalTime2; in NUMDload()
273 pDevice->pStats->totalTime[STAT_DC] += totalTime; in NUMDload()
288 totalTime = SPfrontEnd->IFseconds() - startTime; in NUMDload()
289 pDevice->pStats->totalTime[STAT_DC] += totalTime; in NUMDload()
292 pDevice->pStats->totalTime[STAT_AC] += in NUMDload()
316 pDevice->pStats->totalTime[STAT_TRAN] += totalTime; in NUMDload()
367 pDevice->pStats->totalTime[STAT_TRAN] += totalTime; in NUMDload()
[all …]
/dports/cad/ngspice_rework/ngspice-35/src/spicelib/devices/numd2/
H A Dnud2load.c33 double startTime, startTime2, totalTime, totalTime2; in NUMD2load() local
98 totalTime = 0.0; in NUMD2load()
225 pDevice->pStats->totalTime[STAT_SETUP] += totalTime2; in NUMD2load()
226 pDevice->pStats->totalTime[STAT_DC] -= totalTime2; in NUMD2load()
283 pDevice->pStats->totalTime[STAT_DC] += totalTime; in NUMD2load()
299 totalTime = SPfrontEnd->IFseconds() - startTime; in NUMD2load()
300 pDevice->pStats->totalTime[STAT_DC] += totalTime; in NUMD2load()
303 pDevice->pStats->totalTime[STAT_AC] += in NUMD2load()
327 pDevice->pStats->totalTime[STAT_TRAN] += totalTime; in NUMD2load()
376 pDevice->pStats->totalTime[STAT_TRAN] += totalTime; in NUMD2load()
[all …]
/dports/devel/msbuild/msbuild-0.06/src/Build/Evaluation/Profiler/
H A DProfilerResultPrettyPrinter.cs58 TimeSpan? totalTime = null; in GetContent()
64 if (totalTime == null) in GetContent()
66 totalTime = time.InclusiveTime; in GetContent()
69 … evaluationLocationPrinter.AppendLocation(stringBuilder, totalTime.Value, location, time); in GetContent()
72 Debug.Assert(totalTime != null, "There should be at least one evaluation pass result"); in GetContent()
80 … evaluationLocationPrinter.AppendLocation(stringBuilder, totalTime.Value, location, time); in GetContent()
/dports/games/hedgewars-server/hedgewars-src-1.0.0/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/
H A Dice02.lua18 local totalTime = 15000 -- Total available time. Initial value is start time; is added to later whe…
73 TurnTime = totalTime
162 totalTime = totalTime - TurnTimeLeft
163 local totalTimePrinted = totalTime / 1000
169 if timeRecord ~= nil and totalTime >= timeRecord then
172 if timeRecord == nil or totalTime < timeRecord then
173 SaveCampaignVar("IceStadiumBestTime", tostring(totalTime))
186 SendStat(siPlayerKills, totalTime, GetHogTeamName(hero.gear))
194 local time = totalTime - TurnTimeLeft
295 totalTime = totalTime + 8000
[all …]
/dports/games/hedgewars/hedgewars-src-1.0.0/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/
H A Dice02.lua18 local totalTime = 15000 -- Total available time. Initial value is start time; is added to later whe…
73 TurnTime = totalTime
162 totalTime = totalTime - TurnTimeLeft
163 local totalTimePrinted = totalTime / 1000
169 if timeRecord ~= nil and totalTime >= timeRecord then
172 if timeRecord == nil or totalTime < timeRecord then
173 SaveCampaignVar("IceStadiumBestTime", tostring(totalTime))
186 SendStat(siPlayerKills, totalTime, GetHogTeamName(hero.gear))
194 local time = totalTime - TurnTimeLeft
295 totalTime = totalTime + 8000
[all …]

12345678910>>...71