HomeSort by relevance Sort by last modified time
    Searched full:totaltime (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /external/chromium_org/tools/perf/metrics/
cpu_unittest.py 14 start = {'Browser': {'CpuProcessTime': 0, 'TotalTime': 0}}
15 end = {'Browser': {'CpuProcessTime': 5, 'TotalTime': 20}}
22 end['Renderer'] = {'CpuProcessTime': 2, 'TotalTime': 20}
30 start['Renderer'] = {'CpuProcessTime': 0, 'TotalTime': 0}
35 start = {'Browser': {'CpuProcessTime': 0, 'TotalTime': 2**32 - 20}}
36 end = {'Browser': {'CpuProcessTime': 5, 'TotalTime': 20}}
cpu.py 47 {'Browser': {'CpuProcessTime': ..., 'TotalTime': ...},
48 'Renderer': {'CpuProcessTime': ..., 'TotalTime': ...}
49 'Gpu': {'CpuProcessTime': ..., 'TotalTime': ...}}
67 total_time = (cpu_stats[process_type]['TotalTime'] -
68 start_cpu_stats[process_type]['TotalTime'])
  /external/chromium_org/cc/debug/
picture_record_benchmark.h 32 typedef std::pair<base::TimeDelta, unsigned> TotalTime;
33 std::map<std::pair<int, int>, TotalTime> times_;
  /external/chromium_org/third_party/angle/tests/perf_tests/
SimpleBenchmark.cpp 30 double totalTime = mTimer->getElapsedTime();
31 std::cout << " - total time: " << totalTime << " sec" << std::endl;
33 std::cout << " - average frame time: " << 1000.0 * totalTime / mNumFrames << " msec" << std::endl;
39 void SimpleBenchmark::step(float dt, double totalTime)
41 stepBenchmark(dt, totalTime);
SimpleBenchmark.h 36 virtual void stepBenchmark(float dt, double totalTime) { }
58 void step(float dt, double totalTime);
  /external/chromium_org/v8/tools/
profile_view.js 90 * @param {number} totalTime Amount of time that application spent in the
99 funcName, totalTime, selfTime, head) {
101 funcName, totalTime, selfTime, head);
152 * @param {number} totalTime Amount of time that application spent in the
161 internalFuncName, totalTime, selfTime, head) {
163 this.totalTime = totalTime;
176 function() { return this.totalTime /
177 (this.parent ? this.parent.totalTime : this.totalTime) * 100.0; })
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2374.js 28 var msg = '{"result":{"profile":{"head":{"functionName":"(root)","url":"","lineNumber":0,"totalTime":495.7243772462511,"selfTime":0,"numberOfCalls":0,"visible":true,"callUID":2771605942,"children":[{"functionName":"(program)","url":"","lineNumber":0,"totalTime":495.7243772462511,"selfTime":495.7243772462511,"numberOfCalls":0,"visible":true,"callUID":1902715303,"children":[]}]},"bottomUpHead":{"functionName":"(root)","url":"","lineNumber":0,"totalTime":495.7243772462511,"selfTime":0,"numberOfCalls":0,"visible":true,"callUID":2771605942,"children":[{"functionName":"(program)","url":"","lineNumber":0,"totalTime":495.7243772462511,"selfTime":495.7243772462511,"numberOfCalls":0,"visible":true,"callUID":1902715303,"children":[]}]}}},"id":41}';
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CPUProfileDataGrid.js 46 this.totalTime = profileNode.totalTime;
142 "total": formatMilliseconds(this.totalTime),
240 return this.selfTime / this.tree.totalTime * 100.0;
245 return this.totalTime / this.tree.totalTime * 100.0;
269 this._savedTotalTime = this.totalTime;
285 this.totalTime = this._savedTotalTime;
320 container.totalTime += child.totalTime;
    [all...]
CPUProfileFlameChart.js 92 totalTime: function()
94 return this._cpuProfile.profileHead.totalTime;
166 function onCloseFrame(depth, node, startTime, totalTime, selfTime)
169 entries[index] = new ChartEntry(depth, totalTime, startTime, selfTime, node);
238 var totalTime = this._millisecondsToString(timelineData.entryTotalTimes[entryIndex]);
240 pushEntryInfoRow(WebInspector.UIString("Total time"), totalTime);
244 pushEntryInfoRow(WebInspector.UIString("Aggregated total time"), Number.secondsToString(node.totalTime / 1000, true));
451 var totalTime = overviewPane._dataProvider.totalTime();
452 this._maximumBoundaries = this._minimumBoundaries + totalTime;
    [all...]
CPUProfileBottomUpDataGrid.js 54 this.totalTime = profileDataGridNode.totalTime;
153 child.totalTime += focusNode.totalTime;
162 child.totalTime = focusNode.totalTime;
274 this.totalTime = profileDataGridNode.totalTime;
  /external/clang/utils/analyzer/
SumTimerInfo.py 23 TotalTime = 0.0
71 TotalTime = TotalTime + float(s[6])
82 print "TotalTime %f" % (TotalTime)
  /frameworks/base/core/java/android/animation/
TimeAnimator.java 42 long totalTime = currentTime - mStartTime;
45 mListener.onTimeUpdate(this, totalTime, deltaTime);
82 * deltaTime will be zero. The same is true for totalTime, unless the animator was
92 * @param totalTime The total time elapsed since the animator started, in milliseconds.
95 void onTimeUpdate(TimeAnimator animation, long totalTime, long deltaTime);
  /external/chromium_org/third_party/skia/src/utils/
SkInterpolator.cpp 78 SkMSec totalTime = endTime - startTime;
80 endTime = SkScalarFloorToInt(fRepeat * totalTime);
83 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime :
84 (SkMSec) SkScalarFloorToInt(fraction * totalTime);
88 offsetTime = offsetTime % (totalTime << mirror);
89 if (offsetTime > totalTime) { // can only be true if fMirror is true
90 offsetTime = (totalTime << 1) - offsetTime;
  /cts/suite/cts/deviceTests/opengl/src/com/android/cts/opengl/reference/
GLReferenceBenchmark.java 53 double totalTime = 0;
80 totalTime = setUpTimes[0] + setUpTimes[1] + setUpTimes[2] +
83 "Total Time", totalTime, ResultType.LOWER_BETTER, ResultUnit.MS);
  /development/tools/axl/
chewperf.py 58 totalTime = tLast - t0
60 print "total time", totalTime, "bytes", bytes, "rate", bytes * 1000 / totalTime
  /external/chromium_org/third_party/angle/samples/angle/sample_util/
SampleApplication.h 33 virtual void step(float dt, double totalTime);
  /external/eigen/bench/spbench/
sp_solver.cpp 27 BenchTimer timer,totaltime; local
40 totaltime.start();
120 totaltime.stop();
121 cout << "Total time " << totaltime.value() << "\n";
  /frameworks/native/opengl/tests/angeles/
app-linux.cpp 208 double totalTime = timeTemp.tv_usec/1000000.0 + timeTemp.tv_sec;
228 totalTime = (timeTemp.tv_usec/1000000.0 + timeTemp.tv_sec) - totalTime;
229 printf("totalTime=%f s, frameCount=%d, %.2f fps\n",
230 totalTime, frameCount, frameCount/totalTime);
  /external/skia/src/utils/
SkInterpolator.cpp 78 SkMSec totalTime = endTime - startTime;
80 endTime = SkScalarFloorToInt(fRepeat * totalTime);
83 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime :
84 (SkMSec) SkScalarFloorToInt(fraction * totalTime);
88 offsetTime = offsetTime % (totalTime << mirror);
89 if (offsetTime > totalTime) { // can only be true if fMirror is true
90 offsetTime = (totalTime << 1) - offsetTime;
  /external/chromium_org/tools/page_cycler/common/
report.html 16 var iterations, pages, totalTime, fudgeTime;
27 totalTime = (f[1] - 0);
38 document.write("<tr><td>milliseconds</td><td>" + totalTime + "</td></tr>");
39 document.write("<tr><td>mean per set</td><td>" + (totalTime / iterations).toFixed(2) + "</td></tr>");
40 document.write("<tr><td>mean per page</td><td>" + (totalTime / iterations / pages).toFixed(2) + "</td></tr>");
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineJSProfile.js 56 * @param {number} totalTime
59 function onCloseFrame(depth, node, startTime, totalTime, selfTime)
63 record.setEndTime(Math.min(startTime + totalTime, recordEndTime));
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
BaselineButtonsTest.java 46 mTotalTime = activity.findViewById(R.id.totaltime);
82 assertEquals("TotalTime wrong bottom", pauseHeight, mTotalTime.getBottom());
84 assertTrue("TotalTime too tall", mTotalTime.getTop() > 0);
  /cts/suite/cts/deviceTests/simplecpu/jni/
CpuNativeJni.cpp 193 double totalTime = 0;
199 totalTime += (end - start);
202 return totalTime;
256 double totalTime = 0;
263 totalTime += (end - start);
268 return totalTime;
  /external/chromium_org/ui/gfx/animation/
multi_animation.cc 15 static int TotalTime(const MultiAnimation::Parts& parts) {
28 cycle_time_ms_(TotalTime(parts)),
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
TrimControllerOverlay.java 84 public void setTimes(int currentTime, int totalTime, int trimStartTime, int trimEndTime) {
85 mTimeBar.setTime(currentTime, totalTime, trimStartTime, trimEndTime);

Completed in 779 milliseconds

1 2 3 4 5 6