Home
last modified time | relevance | path

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

12

/external/testng/src/main/java/org/testng/reporters/jq/
DTimesPanel.java104 private String prettyDuration(long totalTime) { in prettyDuration() argument
106 if (totalTime < 1000) { in prettyDuration()
107 result = totalTime + " ms"; in prettyDuration()
108 } else if (totalTime < 1000 * 60) { in prettyDuration()
109 result = (totalTime / 1000) + " seconds"; in prettyDuration()
110 } else if (totalTime < 1000 * 60 * 60) { in prettyDuration()
111 result = (totalTime / 1000 / 60) + " minutes"; in prettyDuration()
113 result = (totalTime / 1000 / 60 / 60) + " hours"; in prettyDuration()
/external/llvm-project/mlir/lib/Pass/
DPassTiming.cpp97 TimeRecord totalTime; in getTotalTime() local
99 totalTime += child.second->getTotalTime(); in getTotalTime()
100 return totalTime; in getTotalTime()
200 void printResultsAsList(raw_ostream &os, Timer *root, TimeRecord totalTime);
204 TimeRecord totalTime);
342 TimeRecord time, TimeRecord totalTime) { in printTimeEntry() argument
343 time.print(os, totalTime); in printTimeEntry()
358 TimeRecord totalTime = rootTimer->getTotalTime(); in print() local
359 printTimerHeader(os, totalTime); in print()
363 printResultsAsList(os, rootTimer.get(), totalTime); in print()
[all …]
/external/skqp/src/utils/
DSkInterpolator.cpp79 SkMSec totalTime = endTime - startTime; in timeToT() local
81 endTime = SkScalarFloorToInt(fRepeat * totalTime); in timeToT()
84 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime : in timeToT()
85 (SkMSec) SkScalarFloorToInt(fraction * totalTime); in timeToT()
89 offsetTime = offsetTime % (totalTime << mirror); in timeToT()
90 if (offsetTime > totalTime) { // can only be true if fMirror is true in timeToT()
91 offsetTime = (totalTime << 1) - offsetTime; in timeToT()
/external/jackson-core/src/test/java/perf/
DConcurrencyReadTest.java42 double totalTime = 0.0; in test() local
54 totalTime += time; in test()
58 System.out.printf("Rate: %.1f (avg: %.1f)\n", rate, totalCount/totalTime); in test()
/external/deqp/modules/glshared/
DglsShaderPerformanceMeasurer.cpp302 deUint64 totalTime = measureState.getTotalTime(); in iterate() local
307 double mfragPerSecond = (double)numPixels / (double)totalTime; in iterate()
308 double mvertPerSecond = (double)numVertices / (double)totalTime; in iterate()
322 deUint64 totalTime = measureState.getTotalTime(); in logMeasurementInfo() local
327 double mfragPerSecond = (double)numPixels / (double)totalTime; in logMeasurementInfo()
328 double mvertPerSecond = (double)numVertices / (double)totalTime; in logMeasurementInfo()
329 double framesPerSecond = (double)numFrames / ((double)totalTime / 1000000.0); in logMeasurementInfo()
/external/objenesis/tck/src/main/java/org/objenesis/tck/
DTextReporter.java66 private long totalTime = 0; field in TextReporter
138 totalTime += System.currentTimeMillis() - startTime; in endTests()
221 summary.println("--- SUCCESSFUL: TCK tests passed without errors in " + totalTime + " ms"); in printResult()
/external/skia/tools/viewer/
DStatsLayer.cpp125 double totalTime = 0; in onPaint() local
147 totalTime += fTotalTimes[i]; in onPaint()
163 double time = totalTime / std::max(1, totalCount); in onPaint()
/external/owasp/sanitizer/src/tests/org/owasp/html/
DAntiSamyTest.java138 long totalTime = 0;
182 totalTime = totalTime + (endTime - startTime);
185 averageTime = totalTime / testReps;
188 System.out.println("Total time ms: " + totalTime/1000000L);
/external/deqp/modules/gles2/performance/
Des2pTextureUploadTests.cpp267 deUint64 totalTime = measureState.getTotalTime(); in logResults() local
272 double framesPerSecond = (double)numFrames / ((double)totalTime / 1000000.0); in logResults()
273 double avgFrameTime = (double)totalTime / (double)numFrames; in logResults()
274 double avgMTexelsPerSeconds = (double)numPixels / (double)totalTime; in logResults()
275 double avgTexelDrawDurationNs = (double)totalTime * 1000.0 / (double)numPixels; in logResults()
Des2pShaderCompilationCases.cpp618 deInt64 totalTime (void) const { return sourceSetTime + vertexCompileTime + fragmentCompileTime; } in totalTime() function
2448 totalTimes.push_back(measurements[i].totalTime()); in goodEnoughMeasurements()
2563 totalTimes.push_back (measurements[ndx].totalTime()); in iterate()
2568 "ms", QP_KEY_TAG_TIME, (float)measurements[ndx].totalTime()/1000.0f); in iterate()
/external/google-fruit/extras/benchmark/
Dnew_delete_benchmark.cpp101 double totalTime = in EVAL() local
107 std::cout << "Total = " << totalTime * 1.0 / num_loops << std::endl; in EVAL()
/external/testng/src/main/java/org/testng/reporters/
DJUnitReportReporter.java95 float totalTime = 0; in generateReport() local
128 totalTime += time; in generateReport()
138 p1.setProperty("time", "" + formatTime(totalTime)); in generateReport()
/external/lzma/CPP/7zip/UI/Console/
DMain.cpp455 UInt64 totalTime = curTime - creationTime; in PrintStat() local
457 PrintTime("Kernel ", kernelTime, totalTime); in PrintStat()
468 PrintTime("User ", userTime, totalTime); in PrintStat()
470 PrintTime("Process", kernelTime + userTime, totalTime); in PrintStat()
475 PrintTime("Global ", totalTime, totalTime); in PrintStat()
/external/zstd/programs/
Dbenchfn.c140 { PTime const totalTime = UTIL_clockSpanNano(clockStart); in BMK_benchFunction() local
142 rt.nanoSecPerRun = (double)totalTime / nbLoops; in BMK_benchFunction()
/external/angle/samples/sample_util/
DSampleApplication.h44 virtual void step(float dt, double totalTime);
DSampleApplication.cpp149 void SampleApplication::step(float dt, double totalTime) {} in step() argument
/external/apache-http/android/src/android/net/http/
DRequestQueue.java113 int totalTime = 0; in stopTiming() local
117 totalTime += rt.mTotalThreadTime; in stopTiming()
121 Log.d("Http", "Http thread used " + totalTime + " ms " + " for " in stopTiming()
/external/libchrome/base/android/java/src/org/chromium/base/
DAnimationFrameTimeHistogram.java128 public void onTimeUpdate(TimeAnimator animation, long totalTime, long deltaTime) { in onTimeUpdate() argument
/external/angle/samples/simple_vertex_shader/
DSimpleVertexShader.cpp79 void step(float dt, double totalTime) override in step() argument
/external/angle/samples/post_sub_buffer/
DPostSubBuffer.cpp82 void step(float dt, double totalTime) override in step() argument
/external/lottie/LottieSample/src/main/kotlin/com/airbnb/lottie/samples/
DPlayerFragment.kt527 val totalTime = ((animation.duration / animationSpeed) / 1000.0) in <lambda>() constant
528 val totalTimeFormatted = ("%.1f").format(totalTime) in <lambda>()
530 val progress = (totalTime / 100.0) * (Math.round(animation.progress * 100.0)) in <lambda>()
/external/angle/samples/particle_system/
DParticleSystem.cpp130 void step(float dt, double totalTime) override in step() argument
/external/dng_sdk/source/
Ddng_utils.cpp330 real64 totalTime = TickTimeInSeconds () - fStartTime; in ~dng_timer() local
332 fprintf (stderr, "%s: %0.3f sec\n", fMessage, totalTime); in ~dng_timer()
/external/angle/samples/multi_window/
DMultiWindow.cpp96 void step(float dt, double totalTime) override in step() argument
/external/deqp/modules/gles3/performance/
Des3pShaderCompilationCases.cpp618 deInt64 totalTime (void) const { return sourceSetTime + vertexCompileTime + fragmentCompileTime; } in totalTime() function
2468 totalTimes.push_back(measurements[i].totalTime()); in goodEnoughMeasurements()
2583 totalTimes.push_back (measurements[ndx].totalTime()); in iterate()
2588 "ms", QP_KEY_TAG_TIME, (float)measurements[ndx].totalTime()/1000.0f); in iterate()

12