/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.head ? this.head.totalTime : this.totalTime) * 100.0; }); 186 (this.head ? this.head.totalTime : this.totalTime) * 100.0; }); 194 function() { return this.totalTime / 195 (this.parent ? this.parent.totalTime : this.totalTime) * 100.0; });
|
D | tickprocessor.js | 397 return rec2.totalTime - rec1.totalTime || 432 flatView.head.totalTime = totalTicks; 462 heavyView.head.totalTime = totalTicks; 465 return rec2.totalTime - rec1.totalTime || 541 print(' ' + padLeft(rec.totalTime, 5) + ' ' +
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | ProfileDataGridTree.js | 42 this.totalTime = profileNode.totalTime; 69 data["total"] = formatMilliseconds(this.totalTime); 192 return this.averageTime / this.tree.totalTime * 100.0; 197 return this.selfTime / this.tree.totalTime * 100.0; 202 return this.totalTime / this.tree.totalTime * 100.0; 233 this._savedTotalTime = this.totalTime; 247 this.totalTime = this._savedTotalTime; 266 this.totalTime += child.totalTime; 305 this.totalTime = profileNode.totalTime; 342 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 | 302 if (profileDataGridNode.totalTime < queryNumberMilliseconds) 309 if (profileDataGridNode.totalTime > queryNumberMilliseconds) 318 if (profileDataGridNode.totalTime == queryNumberMilliseconds)
|
/external/webkit/Source/JavaScriptCore/profiler/ |
D | ProfileNode.h | 82 double totalTime() const { return m_visibleTotalTime; } in totalTime() function 93 …Percent() const { return (m_visibleTotalTime / (m_head ? m_head->totalTime() : totalTime())) * 100… in totalPercent() 94 …fPercent() const { return (m_visibleSelfTime / (m_head ? m_head->totalTime() : totalTime())) * 100… in selfPercent() 143 …t RefPtr<ProfileNode>& a, const RefPtr<ProfileNode>& b) { return a->totalTime() > b->totalTime(); } in totalTimeDescendingComparator() 144 …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 | 84 , m_visibleTotalTime(nodeToCopy->totalTime()) in ProfileNode() 173 m_actualSelfTime += m_children[i]->totalTime(); in stopProfiling() 232 sumOfVisibleChildrensTime += m_children[i]->totalTime(); in calculateVisibleTotalTime()
|
D | ProfileGenerator.cpp | 160 … currentNode->parent()->setSelfTime(currentNode->parent()->selfTime() + currentNode->totalTime()); in removeProfileStart() 175 … 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/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/ |
D | LeaksParserWorker.js | 58 totalTime: 0, 87 childNode.totalTime += leak.size; 92 …self.profile.totalTime = self.profile.children.reduce(function(sum, child) { return sum + child.to…
|
D | WebInspectorShims.js | 61 data.total = Number.bytesToString(this.totalTime);
|
/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 | 78 SkMSec totalTime = endTime - startTime; in timeToT() local 80 endTime = SkScalarMulFloor(fRepeat, totalTime); in timeToT() 83 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime : in timeToT() 84 SkScalarMulFloor(fraction, totalTime); in timeToT() 88 offsetTime = offsetTime % (totalTime << mirror); in timeToT() 89 if (offsetTime > totalTime) { // can only be true if fMirror is true in timeToT() 90 offsetTime = (totalTime << 1) - offsetTime; in timeToT()
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
D | MediaPlayerPrivatePhonon.cpp | 66 stream << " | Total time: " << mediaObject.totalTime(); in debugMediaObject() 293 float duration = m_mediaObject->totalTime() / 1000.0f; in duration() 535 void MediaPlayerPrivatePhonon::totalTimeChanged(qint64 totalTime) in totalTimeChanged() argument 538 LOG(Media, "MediaPlayerPrivatePhonon::totalTimeChanged(%I64d)", totalTime); in totalTimeChanged() 540 LOG(Media, "MediaPlayerPrivatePhonon::totalTimeChanged(%lld)", totalTime); in totalTimeChanged()
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | ScriptProfileNode.h | 57 double totalTime() const;
|
D | ScriptProfileNode.cpp | 56 double ScriptProfileNode::totalTime() const in totalTime() function in WebCore::ScriptProfileNode
|
/external/webkit/Source/WebCore/bindings/js/ |
D | ScriptProfile.cpp | 77 result->setNumber("totalTime", node->totalTime()); in buildInspectorObjectFor()
|
/external/webkit/Source/WebCore/inspector/ |
D | ScriptProfileNode.idl | 33 readonly attribute double totalTime;
|
/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/Source/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):
|
/external/webkit/Tools/ |
D | ChangeLog | 4446 node's totalTime, which is used in calculating percentages. 4471 property, and changed to store the number of leaked bytes in .selfTime/.totalTime.
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-05-24 | 14477 (WebCore::ScriptProfileNode::totalTime): 23233 (WebCore::ScriptProfileNode::totalTime):
|