/external/v8/tools/ |
D | profile_view.js | 99 funcName, totalTime, selfTime, head) { argument 101 funcName, totalTime, selfTime, head); 161 internalFuncName, totalTime, selfTime, head) { argument 163 this.totalTime = totalTime; 176 function() { return this.totalTime / 177 (this.parent ? this.parent.totalTime : this.totalTime) * 100.0; });
|
D | tickprocessor.js | 415 return rec2.totalTime - rec1.totalTime || 496 heavyView.head.totalTime = totalTicks; 499 return rec2.totalTime - rec1.totalTime || 615 print(' ' + padLeft(rec.totalTime, 5) + ' ' +
|
/external/testng/src/main/java/org/testng/reporters/jq/ |
D | TimesPanel.java | 104 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/skqp/src/utils/ |
D | SkInterpolator.cpp | 79 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/skia/src/utils/ |
D | SkInterpolator.cpp | 79 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/deqp/modules/glshared/ |
D | glsShaderPerformanceMeasurer.cpp | 302 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/ |
D | TextReporter.java | 66 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/owasp/sanitizer/src/tests/org/owasp/html/ |
D | AntiSamyTest.java | 138 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/ |
D | es2pTextureUploadTests.cpp | 267 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()
|
D | es2pShaderCompilationCases.cpp | 618 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/ |
D | new_delete_benchmark.cpp | 89 double totalTime = in EVAL() local 95 std::cout << "Total = " << totalTime * 1.0 / num_loops << std::endl; in EVAL()
|
/external/testng/src/main/java/org/testng/reporters/ |
D | JUnitReportReporter.java | 95 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/ |
D | Main.cpp | 455 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/apache-http/android/src/android/net/http/ |
D | RequestQueue.java | 113 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/dng_sdk/source/ |
D | dng_utils.cpp | 330 real64 totalTime = TickTimeInSeconds () - fStartTime; in ~dng_timer() local 332 fprintf (stderr, "%s: %0.3f sec\n", fMessage, totalTime); in ~dng_timer()
|
/external/cldr/tools/java/org/unicode/cldr/icu/ |
D | NewLdml2IcuConverter.java | 476 long totalTime = System.currentTimeMillis(); in main() local 479 System.out.println("Total time taken: " + (System.currentTimeMillis() - totalTime) + "ms"); in main()
|
/external/deqp/modules/gles3/performance/ |
D | es3pShaderCompilationCases.cpp | 618 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()
|
D | es3pBufferDataUploadTests.cpp | 629 deUint64 totalTime; in busyWait() local 633 totalTime = deGetMicroseconds() - startTime; in busyWait() 635 if (totalTime >= maxSingleWaitTime) in busyWait()
|