/external/v8/tools/ |
D | profile_view.js | 104 funcName, totalTime, selfTime, head) { argument 106 funcName, totalTime, selfTime, head); 166 internalFuncName, totalTime, selfTime, head) { argument 168 this.totalTime = totalTime; 181 function() { return this.totalTime / 182 (this.head ? this.head.totalTime : this.totalTime) * 100.0; }); 191 (this.head ? this.head.totalTime : this.totalTime) * 100.0; }); 199 function() { return this.totalTime / 200 (this.parent ? this.parent.totalTime : this.totalTime) * 100.0; });
|
D | tickprocessor.js | 380 return rec2.totalTime - rec1.totalTime || 426 flatView.head.totalTime = totalTicks; 456 heavyView.head.totalTime = totalTicks; 459 return rec2.totalTime - rec1.totalTime || 535 print(' ' + padLeft(rec.totalTime, 5) + ' ' +
|
/external/webkit/WebCore/inspector/front-end/ |
D | 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; 314 this.totalTime = profileNode.totalTime; 351 this._savedTotalTime = this.totalTime; [all …]
|
D | BottomUpProfileDataGridTree.js | 45 this.totalTime = profileDataGridNode.totalTime; 111 child.totalTime += focusNode.totalTime; 120 child.totalTime = focusNode.totalTime; 232 this.totalTime = profileDataGridNode.totalTime;
|
D | TopDownProfileDataGridTree.js | 88 this.totalTime = profileDataGrideNode.totalTime;
|
D | ProfileView.js | 301 if (profileDataGridNode.totalTime < queryNumberMilliseconds) 308 if (profileDataGridNode.totalTime > queryNumberMilliseconds) 317 if (profileDataGridNode.totalTime == queryNumberMilliseconds)
|
/external/webkit/JavaScriptCore/profiler/ |
D | ProfileNode.h | 79 double totalTime() const { return m_visibleTotalTime; } in totalTime() function 90 …Percent() const { return (m_visibleTotalTime / (m_head ? m_head->totalTime() : totalTime())) * 100… in totalPercent() 91 …fPercent() const { return (m_visibleSelfTime / (m_head ? m_head->totalTime() : totalTime())) * 100… in selfPercent() 140 …t RefPtr<ProfileNode>& a, const RefPtr<ProfileNode>& b) { return a->totalTime() > b->totalTime(); } in totalTimeDescendingComparator() 141 …t RefPtr<ProfileNode>& a, const RefPtr<ProfileNode>& b) { return a->totalTime() < b->totalTime(); } in totalTimeAscendingComparator()
|
D | Profile.h | 44 double totalTime() const { return m_head->totalTime(); } in totalTime() function
|
D | ProfileNode.cpp | 81 , m_visibleTotalTime(nodeToCopy->totalTime()) in ProfileNode() 170 m_actualSelfTime += m_children[i]->totalTime(); in stopProfiling() 229 sumOfVisibleChildrensTime += m_children[i]->totalTime(); in calculateVisibleTotalTime()
|
D | ProfileGenerator.cpp | 149 … currentNode->parent()->setSelfTime(currentNode->parent()->selfTime() + currentNode->totalTime()); in removeProfileStart() 164 … currentNode->parent()->setSelfTime(currentNode->parent()->selfTime() + currentNode->totalTime()); in removeProfileEnd()
|
D | Profile.cpp | 93 m_head->setVisibleTotalTime(m_head->totalTime() - m_head->selfTime()); in exclude()
|
/external/chromium/third_party/icu/source/test/threadtest/ |
D | threadtest.cpp | 159 int totalTime; member 220 gRunInfo.totalTime = 0; in parseCommandLine() 249 gRunInfo.totalTime = atoi(argv[argnum]); in parseCommandLine() 250 if (gRunInfo.totalTime < 1) in parseCommandLine() 435 while (gRunInfo.totalTime == 0 || gRunInfo.totalTime > elapsedSeconds) in main() 521 double cyclesPerMinute = totalCyclesCompleted / (double(gRunInfo.totalTime) / double(60)); in main()
|
/external/icu4c/test/threadtest/ |
D | threadtest.cpp | 159 int totalTime; member 220 gRunInfo.totalTime = 0; in parseCommandLine() 249 gRunInfo.totalTime = atoi(argv[argnum]); in parseCommandLine() 250 if (gRunInfo.totalTime < 1) in parseCommandLine() 435 while (gRunInfo.totalTime == 0 || gRunInfo.totalTime > elapsedSeconds) in main() 521 double cyclesPerMinute = totalCyclesCompleted / (double(gRunInfo.totalTime) / double(60)); in main()
|
/external/openssl/apps/ |
D | s_time.c | 338 double totalTime = 0.0; in MAIN() local 450 totalTime += tm_Time_F(STOP); /* Add the time for this iteration */ in MAIN() 453 ….2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),by… in MAIN() 484 totalTime = 0.0; in MAIN() 540 totalTime += tm_Time_F(STOP); /* Add the time for this iteration*/ in MAIN() 543 ….2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),by… in MAIN()
|
/external/skia/src/utils/ |
D | SkInterpolator.cpp | 85 SkMSec totalTime = endTime - startTime; in timeToT() local 87 endTime = SkScalarMulFloor(fRepeat, totalTime); in timeToT() 90 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime : in timeToT() 91 SkScalarMulFloor(fraction, totalTime); in timeToT() 95 offsetTime = offsetTime % (totalTime << mirror); in timeToT() 96 if (offsetTime > totalTime) { // can only be true if fMirror is true in timeToT() 97 offsetTime = (totalTime << 1) - offsetTime; in timeToT()
|
/external/webkit/WebKit/chromium/src/js/ |
D | ProfilerProcessor.js | 54 devtools.profiler.WebKitViewBuilder.prototype.createViewNode = function(funcName, totalTime, selfTi… argument 56 return new devtools.profiler.WebKitViewNode(funcName, totalTime, selfTime, head); 72 devtools.profiler.WebKitViewNode = function(internalFuncName, totalTime, selfTime, head) argument 74 devtools.profiler.ProfileView.Node.call(this, internalFuncName, totalTime, selfTime, head);
|
/external/webkit/WebCore/platform/graphics/qt/ |
D | MediaPlayerPrivatePhonon.cpp | 63 stream << " | Total time: " << mediaObject.totalTime(); in debugMediaObject() 243 float duration = m_mediaObject->totalTime() / 1000.0f; in duration() 485 void MediaPlayerPrivate::totalTimeChanged(qint64 totalTime) in totalTimeChanged() argument 487 LOG(Media, "MediaPlayerPrivatePhonon::totalTimeChanged(%lld)", totalTime); in totalTimeChanged()
|
/external/webkit/WebKit/android/ |
D | TimeCounter.cpp | 126 int totalTime = static_cast<int>((currentTime() - sStartTotalTime) * 1000); in report() local 129 totalTime, threadTime, urlString.utf8().data()); in report()
|
/external/webkit/WebCore/inspector/ |
D | JavaScriptProfileNode.cpp | 93 return JSValueMakeNumber(ctx, profileNode->totalTime()); in getTotalTime()
|
/external/quake/src/com/android/quake/ |
D | DownloaderActivity.java | 260 long totalTime = 10000 * delta / progress; in onReportProgress() local 261 long timeLeft = Math.max(0L, totalTime - delta); in onReportProgress()
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog-2008-08-10 | 5776 (KJS::Profile::exclude): Subtract the selfTime from the totalTime of the 5778 were excluded. Since the head's totalTime is used to calculate %s when 5779 its totalTime is the same as the sum of all its visible childrens' times 7715 (KJS::Profile::totalTime): 9325 (KJS::ProfileNode::totalTime): 15624 know which profile to get the totalTime for the whole profile from without 15641 (KJS::ProfileNode::totalTime): 15746 (KJS::FunctionCallProfile::totalTime):
|