Home
last modified time | relevance | path

Searched refs:timeUsed (Results 1 – 25 of 59) sorted by relevance

123

/dports/devel/libfastcommon/libfastcommon-1.0.43/php-fastcommon/
H A Dtest_error_log.php20 $timeUsed = round($end - $start, 3);
21 echo "fastcommon_error_log time used: $timeUsed\n";
41 $timeUsed = round($end - $start, 3);
42 echo "error_log time used: $timeUsed\n";
H A Dtest_file_put_contents.php22 $timeUsed = round($end - $start, 3);
23 echo "fastcommon_file_put_contents time used: $timeUsed\n";
43 $timeUsed = round($end - $start, 3);
44 echo "file_put_contents time used: $timeUsed\n";
/dports/devel/capstone3/capstone-3.0.5/suite/benchmark/
H A Dtest_iter_benchmark.c75 double timeUsed; in test() local
91 timeUsed = (double)(end - start) / CLOCKS_PER_SEC; in test()
92 printf("time used:%f\n", timeUsed); in test()
/dports/devel/capstone4/capstone-4.0.2/suite/benchmark/
H A Dtest_iter_benchmark.c75 double timeUsed; in test() local
91 timeUsed = (double)(end - start) / CLOCKS_PER_SEC; in test()
92 printf("time used:%f\n", timeUsed); in test()
/dports/emulators/qemu/qemu-6.2.0/capstone/suite/benchmark/
H A Dtest_iter_benchmark.c75 double timeUsed;
91 timeUsed = (double)(end - start) / CLOCKS_PER_SEC;
92 printf("time used:%f\n", timeUsed);
/dports/emulators/qemu42/qemu-4.2.1/capstone/suite/benchmark/
H A Dtest_iter_benchmark.c75 double timeUsed; in test() local
91 timeUsed = (double)(end - start) / CLOCKS_PER_SEC; in test()
92 printf("time used:%f\n", timeUsed); in test()
/dports/emulators/qemu60/qemu-6.0.0/capstone/suite/benchmark/
H A Dtest_iter_benchmark.c75 double timeUsed; in test() local
91 timeUsed = (double)(end - start) / CLOCKS_PER_SEC; in test()
92 printf("time used:%f\n", timeUsed); in test()
/dports/devel/redasm/REDasm-2.1.1/LibREDasm/depends/capstone/suite/benchmark/
H A Dtest_iter_benchmark.c75 double timeUsed; in test() local
91 timeUsed = (double)(end - start) / CLOCKS_PER_SEC; in test()
92 printf("time used:%f\n", timeUsed); in test()
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/capstone/suite/benchmark/
H A Dtest_iter_benchmark.c75 double timeUsed; in test() local
91 timeUsed = (double)(end - start) / CLOCKS_PER_SEC; in test()
92 printf("time used:%f\n", timeUsed); in test()
/dports/emulators/qemu5/qemu-5.2.0/capstone/suite/benchmark/
H A Dtest_iter_benchmark.c75 double timeUsed; in test() local
91 timeUsed = (double)(end - start) / CLOCKS_PER_SEC; in test()
92 printf("time used:%f\n", timeUsed); in test()
/dports/emulators/qemu-utils/qemu-4.2.1/capstone/suite/benchmark/
H A Dtest_iter_benchmark.c75 double timeUsed; in test() local
91 timeUsed = (double)(end - start) / CLOCKS_PER_SEC; in test()
92 printf("time used:%f\n", timeUsed); in test()
/dports/emulators/qemu-guest-agent/qemu-5.0.1/capstone/suite/benchmark/
H A Dtest_iter_benchmark.c75 double timeUsed;
91 timeUsed = (double)(end - start) / CLOCKS_PER_SEC;
92 printf("time used:%f\n", timeUsed);
/dports/games/lwjgl/lwjgl-2df01dd/src/java/org/lwjgl/test/applet/
H A DSpeed.java79 long timeUsed = 5000 + (startTime - System.currentTimeMillis()); in paintGL() local
81 System.out.println(fps + " frames in " + timeUsed / 1000f + " seconds = " in paintGL()
82 + (fps / (timeUsed / 1000f))); in paintGL()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/saliency/src/BING/
H A DCmTimer.hpp140 float timeUsed = TimeInSeconds(); in Report() local
141 …[%s] CumuTime: %gs, #run: %d, AvgTime: %gs\n", title.c_str(), timeUsed, n_starts, timeUsed / n_sta… in Report()
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/area/
H A DAreaTreeHandler.java516 long timeUsed = System.currentTimeMillis() - startTime; in logResults() local
521 log.debug("Total time used: " + timeUsed + "ms"); in logResults()
524 long perPage = (timeUsed / pageCount); in logResults()
525 long ppm = (timeUsed != 0 ? Math.round(60000 * pageCount in logResults()
526 / (double) timeUsed) : -1); in logResults()
/dports/games/gnustep-ladder/Ladder-1.0/
H A DGo.m227 timeUsed[turn] = timeUsed[turn] + [turnDate timeIntervalSinceDate:_turnBeginDate];
450 //timeUsed[turn] = timeUsed[turn] + [turnTime timeIntervalSinceDate:_turnBeginDate];
573 timeUsed[playerColorType] = time;
578 return timeUsed[playerColorType];
586 timeUsed[turn] = timeUsed[turn] + [turnTime timeIntervalSinceDate:_turnBeginDate];
H A D.#Go.m.1.11227 timeUsed[turn] = timeUsed[turn] + [turnDate timeIntervalSinceDate:_turnBeginDate];
450 //timeUsed[turn] = timeUsed[turn] + [turnTime timeIntervalSinceDate:_turnBeginDate];
573 timeUsed[playerColorType] = time;
578 return timeUsed[playerColorType];
586 timeUsed[turn] = timeUsed[turn] + [turnTime timeIntervalSinceDate:_turnBeginDate];
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Ports/src/System/IO/Ports/
H A DSerialPort.cs648 int timeUsed = 0; in ReadOneChar()
704 else if (timeout - timeUsed >= 0) in ReadOneChar()
706 nextByte = _internalSerialStream.ReadByte(timeout - timeUsed); in ReadOneChar()
707 timeUsed = Environment.TickCount - startTicks; in ReadOneChar()
981 int timeUsed = 0; in ReadTo()
1008 else if (_readTimeout - timeUsed >= 0) in ReadTo()
1011 … numCharsRead = InternalRead(_singleCharBuffer, 0, 1, _readTimeout - timeUsed, true); in ReadTo()
1012 timeUsed += Environment.TickCount - timeNow; in ReadTo()
/dports/www/otter-browser/otter-browser-1.0.03/src/modules/backends/passwords/file/
H A DFilePasswordsStorageBackend.cpp75 …password.timeUsed = QDateTime::fromString(passwordObject.value(QLatin1String("timeUsed")).toString… in initialize()
76 password.timeUsed.setTimeSpec(Qt::UTC); in initialize()
143 if (passwords.at(i).timeUsed.isValid()) in save()
145 … passwordObject.insert(QLatin1String("timeUsed"), passwords.at(i).timeUsed.toString(Qt::ISODate)); in save()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/sys/system/IO/ports/
H A DSerialPort.cs914 int timeUsed = 0; in ReadOneChar()
967 else if (timeout - timeUsed >= 0) { in ReadOneChar()
968 nextByte = internalSerialStream.ReadByte(timeout - timeUsed); in ReadOneChar()
969 timeUsed = Environment.TickCount - startTicks; in ReadOneChar()
1236 int timeUsed = 0; in ReadTo()
1260 else if (readTimeout - timeUsed >= 0) { in ReadTo()
1262 … numCharsRead = InternalRead(singleCharBuffer, 0, 1, readTimeout - timeUsed, true); in ReadTo()
1263 timeUsed += Environment.TickCount - timeNow; in ReadTo()
/dports/math/ogdf/OGDF/src/ogdf/energybased/
H A DSpringEmbedderKK.cpp70 double timeUsed; in initialize()
71 usedTime(timeUsed); in initialize()
78 timeUsed = usedTime(timeUsed); in initialize()
/dports/games/lwjgl/lwjgl-2df01dd/src/java/org/lwjgl/test/opengl/
H A DGears.java145 long timeUsed = 5000 + (startTime - System.currentTimeMillis()); in loop() local
147 System.out.println(fps + " frames in " + timeUsed / 1000f + " seconds = " in loop()
148 + (fps / (timeUsed / 1000f))); in loop()
/dports/games/lwjgl/lwjgl-2df01dd/src/java/org/lwjgl/test/opengl/awt/
H A DAWTGearsCanvas.java129 long timeUsed = 5000 + (startTime - System.currentTimeMillis()); in paintGL() local
131 System.out.println(fps + " frames in " + timeUsed / 1000f + " seconds = " in paintGL()
132 + (fps / (timeUsed / 1000f))); in paintGL()
/dports/www/squid/squid-4.15/src/
H A DPeerPoolMgr.cc124 const int timeUsed = squid_curtime - params.conn->startTime(); in handleOpenedConnection() local
126 const int timeLeft = positiveTimeout(peerTimeout - timeUsed); in handleOpenedConnection()
/dports/editors/cpeditor/cpeditor-6.8.2/src/Core/
H A DRunner.hpp95 …void runFinished(int index, const QString &out, const QString &err, int exitCode, int timeUsed, bo…

123