Searched refs:maxDepth (Results 1 - 12 of 12) sorted by relevance

/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Daccess-binary-trees.js33 var maxDepth = Math.max(minDepth + 2, n);
34 var stretchDepth = maxDepth + 1;
38 var longLivedTree = bottomUpTree(0,maxDepth);
39 for (var depth=minDepth; depth<=maxDepth; depth+=2){
40 var iterations = 1 << (maxDepth - depth + minDepth);
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Daccess-binary-trees.js33 var maxDepth = Math.max(minDepth + 2, n);
34 var stretchDepth = maxDepth + 1;
38 var longLivedTree = bottomUpTree(0,maxDepth);
39 for (var depth=minDepth; depth<=maxDepth; depth+=2){
40 var iterations = 1 << (maxDepth - depth + minDepth);
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/
H A Dscript.js14 var maxDepth = 0;
30 if (maxDepth < tempDepth) {
31 maxDepth = tempDepth;
42 depths[0] = maxDepth;
/external/webkit/Source/JavaScriptCore/wtf/
H A DAVLTree.h56 // // Must return a valid value for index when 0 <= index < maxDepth
66 template<unsigned maxDepth>
69 bool& operator[](unsigned i) { ASSERT(i < maxDepth); return m_data[i]; }
70 void set() { for (unsigned i = 0; i < maxDepth; ++i) m_data[i] = true; }
71 void reset() { for (unsigned i = 0; i < maxDepth; ++i) m_data[i] = false; }
74 FixedArray<bool, maxDepth> m_data;
77 // How to determine maxDepth:
127 template <class Abstractor, unsigned maxDepth = 32, class BSet = AVLTreeDefaultBSet<maxDepth> >
335 handle path_h[maxDepth
[all...]
/external/clang/bindings/python/examples/cindex/
H A Dcindex-dump.py40 if opts.maxDepth is not None and depth >= opts.maxDepth:
68 parser.add_option("", "--max-depth", dest="maxDepth",
/external/srec/tools/grxmlcompile/
H A Dsub_min.cpp122 int ii, jj, dd, maxDepth, count, itCnt; local
124 maxDepth= 0;
126 if (maxDepth < depthMap[ii])
127 maxDepth= depthMap[ii];
133 for (dd= 0; dd <= maxDepth; dd++)
/external/webkit/Source/WebCore/inspector/front-end/
H A Dtreeoutline.js750 TreeElement.prototype.expandRecursively = function(maxDepth)
759 if (typeof maxDepth === "undefined" || typeof maxDepth === "null")
760 maxDepth = 3;
763 if (depth < maxDepth)
765 item = item.traverseNextTreeElement(false, this, (depth >= maxDepth), info);
H A DDetailedHeapshotView.js638 const maxDepth = 1;
643 current = current.traverseNextNode(false, null, (depth >= maxDepth), info);
H A DHeapSnapshotView.js262 const maxDepth = 2;
267 current = current.traverseNextNode(false, null, (depth >= maxDepth), info);
/external/clang/lib/AST/
H A DStmtDumper.cpp44 StmtDumper(SourceManager *sm, raw_ostream &os, unsigned maxDepth) argument
45 : SM(sm), OS(os), IndentLevel(0-1), MaxDepth(maxDepth) {
/external/webkit/Source/WebCore/bindings/scripts/
H A DCodeGeneratorJS.pm2647 my $maxDepth = 0;
2671 $maxDepth = $depth if ($depth > $maxDepth);
/external/webkit/Source/WebCore/bindings/v8/
H A DSerializedScriptValue.cpp95 static const int maxDepth = 20000; member in namespace:WebCore::__anon11753
609 if (m_depth > maxDepth)

Completed in 668 milliseconds