HomeSort by relevance Sort by last modified time
    Searched refs:totalTime (Results 1 - 25 of 40) sorted by null

1 2

  /external/webkit/JavaScriptCore/profiler/
Profile.h 44 double totalTime() const { return m_head->totalTime(); }
ProfileNode.h 79 double totalTime() const { return m_visibleTotalTime; }
90 double totalPercent() const { return (m_visibleTotalTime / (m_head ? m_head->totalTime() : totalTime())) * 100.0; }
91 double selfPercent() const { return (m_visibleSelfTime / (m_head ? m_head->totalTime() : totalTime())) * 100.0; }
140 static inline bool totalTimeDescendingComparator(const RefPtr<ProfileNode>& a, const RefPtr<ProfileNode>& b) { return a->totalTime() > b->totalTime(); }
141 static inline bool totalTimeAscendingComparator(const RefPtr<ProfileNode>& a, const RefPtr<ProfileNode>& b) { return a->totalTime() < b->totalTime(); }
ProfileGenerator.cpp 149 currentNode->parent()->setSelfTime(currentNode->parent()->selfTime() + currentNode->totalTime());
164 currentNode->parent()->setSelfTime(currentNode->parent()->selfTime() + currentNode->totalTime());
ProfileNode.cpp 81 , m_visibleTotalTime(nodeToCopy->totalTime())
170 m_actualSelfTime += m_children[i]->totalTime();
229 sumOfVisibleChildrensTime += m_children[i]->totalTime();
295 printf("Function Name %s %d SelfTime %.3fms/%.3f%% TotalTime %.3fms/%.3f%% VSelf %.3fms VTotal %.3fms Visible %s Next Sibling %s\n",
Profile.cpp 93 m_head->setVisibleTotalTime(m_head->totalTime() - m_head->selfTime());
  /cts/tests/tests/performance2/src/android/performance2/cts/
AppStartup.java 40 long totalTime = 0;
56 totalTime += diff;
60 long avgStartupTime = totalTime / NUMBER_OF_ITERS;
  /cts/tests/tests/performance3/src/android/performance3/cts/
AppStartup.java 41 long totalTime = 0;
57 totalTime += diff;
61 long avgStartupTime = totalTime / NUMBER_OF_ITERS;
  /cts/tests/tests/performance4/src/android/performance4/cts/
AppStartup.java 40 long totalTime = 0;
56 totalTime += diff;
60 long avgStartupTime = totalTime / NUMBER_OF_ITERS;
  /cts/tests/tests/performance5/src/android/performance5/cts/
AppStartup.java 40 long totalTime = 0;
56 totalTime += diff;
60 long avgStartupTime = totalTime / NUMBER_OF_ITERS;
  /external/webkit/WebCore/inspector/front-end/
ProfileDataGridTree.js 42 this.totalTime = profileNode.totalTime;
69 data["total"] = formatMilliseconds(this.totalTime);
201 return this.averageTime / this.tree.totalTime * 100.0;
206 return this.selfTime / this.tree.totalTime * 100.0;
211 return this.totalTime / this.tree.totalTime * 100.0;
242 this._savedTotalTime = this.totalTime;
256 this.totalTime = this._savedTotalTime;
275 this.totalTime += child.totalTime
    [all...]
BottomUpProfileDataGridTree.js 45 this.totalTime = profileDataGridNode.totalTime;
111 child.totalTime += focusNode.totalTime;
120 child.totalTime = focusNode.totalTime;
232 this.totalTime = profileDataGridNode.totalTime;
TopDownProfileDataGridTree.js 88 this.totalTime = profileDataGrideNode.totalTime;
  /frameworks/base/opengl/tests/angeles/
app-linux.cpp 207 double totalTime = timeTemp.tv_usec/1000000.0 + timeTemp.tv_sec;
227 totalTime = (timeTemp.tv_usec/1000000.0 + timeTemp.tv_sec) - totalTime;
228 printf("totalTime=%f s, frameCount=%d, %.2f fps\n",
229 totalTime, frameCount, frameCount/totalTime);
  /external/v8/tools/
profile_view.js 95 * @param {number} totalTime Amount of time that application spent in the
104 funcName, totalTime, selfTime, head) {
106 funcName, totalTime, selfTime, head);
157 * @param {number} totalTime Amount of time that application spent in the
166 internalFuncName, totalTime, selfTime, head) {
168 this.totalTime = totalTime;
181 function() { return this.totalTime /
182 (this.head ? this.head.totalTime : this.totalTime) * 100.0; })
    [all...]
  /external/chromium/third_party/icu/source/test/threadtest/
threadtest.cpp 159 int totalTime;
220 gRunInfo.totalTime = 0;
249 gRunInfo.totalTime = atoi(argv[argnum]);
250 if (gRunInfo.totalTime < 1)
435 while (gRunInfo.totalTime == 0 || gRunInfo.totalTime > elapsedSeconds)
521 double cyclesPerMinute = totalCyclesCompleted / (double(gRunInfo.totalTime) / double(60));
  /external/icu4c/test/threadtest/
threadtest.cpp 159 int totalTime;
220 gRunInfo.totalTime = 0;
249 gRunInfo.totalTime = atoi(argv[argnum]);
250 if (gRunInfo.totalTime < 1)
435 while (gRunInfo.totalTime == 0 || gRunInfo.totalTime > elapsedSeconds)
521 double cyclesPerMinute = totalCyclesCompleted / (double(gRunInfo.totalTime) / double(60));
  /development/tools/axl/
chewperf.py 58 totalTime = tLast - t0
60 print "total time", totalTime, "bytes", bytes, "rate", bytes * 1000 / totalTime
  /external/skia/src/utils/
SkInterpolator.cpp 85 SkMSec totalTime = endTime - startTime;
87 endTime = SkScalarMulFloor(fRepeat, totalTime);
90 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime :
91 SkScalarMulFloor(fraction, totalTime);
95 offsetTime = offsetTime % (totalTime << mirror);
96 if (offsetTime > totalTime) { // can only be true if fMirror is true
97 offsetTime = (totalTime << 1) - offsetTime;
  /frameworks/base/services/java/com/android/server/
LoadAverageService.java 173 final int totalTime = userTime+systemTime+iowaitTime+irqTime+softIrqTime+idleTime;
174 if (totalTime == 0) {
177 int userW = (userTime*W)/totalTime;
178 int systemW = (systemTime*W)/totalTime;
179 int irqW = ((iowaitTime+irqTime+softIrqTime)*W)/totalTime;
217 userW = (st.rel_utime*W)/totalTime;
218 systemW = (st.rel_stime*W)/totalTime;
ProcessStats.java 710 final int totalTime = mRelUserTime + mRelSystemTime + mRelIoWaitTime
713 if (DEBUG) Slog.i(TAG, "totalTime " + totalTime + " over sample time "
734 printProcessCPU(pw, "", -1, "TOTAL", totalTime, mRelUserTime, mRelSystemTime,
754 int totalTime, int user, int system, int iowait, int irq, int softIrq,
757 if (totalTime == 0) totalTime = 1;
758 printRatio(pw, user+system+iowait+irq+softIrq, totalTime);
766 printRatio(pw, user, totalTime);
768 printRatio(pw, system, totalTime);
    [all...]
  /external/openssl/apps/
s_time.c 338 double totalTime = 0.0;
450 totalTime += tm_Time_F(STOP); /* Add the time for this iteration */
453 printf( "\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),bytes_read);
484 totalTime = 0.0;
540 totalTime += tm_Time_F(STOP); /* Add the time for this iteration*/
543 printf( "\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),bytes_read);
  /external/webkit/WebKit/android/
TimeCounter.cpp 126 int totalTime = static_cast<int>((currentTime() - sStartTotalTime) * 1000);
129 totalTime, threadTime, urlString.utf8().data());
  /frameworks/base/services/java/com/android/server/am/
ActivityRecord.java 427 final long totalTime = stack.mInitialStartTime != 0
432 thisTime, totalTime);
439 if (thisTime != totalTime) {
441 TimeUtils.formatDuration(totalTime, sb);
446 stack.reportActivityLaunchedLocked(false, this, thisTime, totalTime);
447 if (totalTime > 0) {
448 service.mUsageStatsService.noteLaunchTime(realActivity, (int)totalTime);
  /dalvik/vm/alloc/
Heap.c 579 u4 totalTime;
916 totalTime = rootSuspendTime + markSweepTime;
931 totalTime = rootSuspendTime + rootTime + dirtySuspendTime + dirtyTime;
942 dvmLogGcStats(numObjectsFreed, numBytesFreed, totalTime);
    [all...]
  /external/webkit/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.cpp 63 stream << " | Total time: " << mediaObject.totalTime();
243 float duration = m_mediaObject->totalTime() / 1000.0f;
485 void MediaPlayerPrivate::totalTimeChanged(qint64 totalTime)
487 LOG(Media, "MediaPlayerPrivatePhonon::totalTimeChanged(%lld)", totalTime);

Completed in 137 milliseconds

1 2