Home
last modified time | relevance | path

Searched refs:maxDepth (Results 1 – 25 of 27) sorted by relevance

12

/external/chromium-trace/trace-viewer/src/tracing/analysis/
Dgeneric_object_view.js43 label, object, indent, depth, maxDepth, suffix) { argument
44 if (depth > maxDepth) {
86 label, object, indent, depth, maxDepth, suffix);
91 label, object, indent, depth, maxDepth, suffix);
95 label, object, indent, depth, maxDepth, suffix) { argument
104 indent, depth + 1, maxDepth,
110 indent + label.length + 1, depth + 1, maxDepth,
117 label, object, indent, depth, maxDepth, suffix) { argument
127 indent, depth, maxDepth,
133 indent + label.length + 1, depth + 1, maxDepth,
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
Daccess-binary-trees.js33 var maxDepth = Math.max(minDepth + 2, n); variable
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_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
Daccess-binary-trees.js33 var maxDepth = Math.max(minDepth + 2, n); variable
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_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
Daccess-binary-trees.js33 var maxDepth = Math.max(minDepth + 2, n); variable
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_org/third_party/angle/src/compiler/
DDetectCallDepth.cpp36 int maxDepth = depth; in detectCallDepth() local
55 maxDepth = std::max(callDepth, maxDepth); in detectCallDepth()
64 return maxDepth; in detectCallDepth()
76 maxDepth(limitCallStackDepth ? maxCallStackDepth : FunctionNode::kInfiniteCallDepth) in DetectCallDepth()
129 return depth >= maxDepth; in checkExceedsMaxDepth()
149 if (maxCallDepth >= maxDepth) in detectCallDepthForFunction()
157 if (maxDepth != FunctionNode::kInfiniteCallDepth) { in detectCallDepth()
Dintermediate.h586 maxDepth(0) {} in preVisit()
598 int getMaxDepth() const {return maxDepth;} in getMaxDepth()
603 maxDepth = std::max(maxDepth, depth); in incrementDepth()
629 int maxDepth; variable
DDetectCallDepth.h74 int maxDepth; variable
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/
Dscript.js14 var maxDepth = 0;
30 if (maxDepth < tempDepth) {
31 maxDepth = tempDepth;
42 depths[0] = maxDepth;
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/
Dscript.js18 var maxDepth = 0;
34 if (maxDepth < tempDepth) {
35 maxDepth = tempDepth;
46 depths[0] = maxDepth;
Dbackground.js172 current_.maxDepth = 0;
386 current_.maxDepth = depths[0];
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DScriptValue.cpp67 static PassRefPtr<JSONValue> v8ToJSONValue(v8::Handle<v8::Value> value, int maxDepth, v8::Isolate* … in v8ToJSONValue() argument
74 if (!maxDepth) in v8ToJSONValue()
76 maxDepth--; in v8ToJSONValue()
92 RefPtr<JSONValue> element = v8ToJSONValue(value, maxDepth, isolate); in v8ToJSONValue()
109 RefPtr<JSONValue> propertyValue = v8ToJSONValue(object->Get(name), maxDepth, isolate); in v8ToJSONValue()
126 return v8ToJSONValue(v8Value(), JSONValue::maxDepth, scriptState->isolate()); in toJSONValue()
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
DClassDefsSection.java158 private int orderItems0(Type type, int idx, int maxDepth) { in orderItems0() argument
165 if (maxDepth < 0) { in orderItems0()
169 maxDepth--; in orderItems0()
174 idx = orderItems0(superclass, idx, maxDepth); in orderItems0()
180 idx = orderItems0(interfaces.getType(i), idx, maxDepth); in orderItems0()
/external/clang/bindings/python/examples/cindex/
Dcindex-dump.py40 if opts.maxDepth is not None and depth >= opts.maxDepth:
/external/srec/tools/grxmlcompile/
Dsub_min.cpp122 int ii, jj, dd, maxDepth, count, itCnt; in IdentifyEquivalence() local
124 maxDepth= 0; in IdentifyEquivalence()
126 if (maxDepth < depthMap[ii]) in IdentifyEquivalence()
127 maxDepth= depthMap[ii]; in IdentifyEquivalence()
133 for (dd= 0; dd <= maxDepth; dd++) in IdentifyEquivalence()
/external/mesa3d/src/mesa/main/
Dmatrix.c666 GLuint maxDepth, GLuint dirtyFlag ) in init_matrix_stack() argument
671 stack->MaxDepth = maxDepth; in init_matrix_stack()
674 stack->Stack = (GLmatrix *) CALLOC(maxDepth * sizeof(GLmatrix)); in init_matrix_stack()
675 for (i = 0; i < maxDepth; i++) { in init_matrix_stack()
/external/chromium_org/third_party/mesa/src/src/mesa/main/
Dmatrix.c666 GLuint maxDepth, GLuint dirtyFlag ) in init_matrix_stack() argument
671 stack->MaxDepth = maxDepth; in init_matrix_stack()
674 stack->Stack = (GLmatrix *) CALLOC(maxDepth * sizeof(GLmatrix)); in init_matrix_stack()
675 for (i = 0; i < maxDepth; i++) { in init_matrix_stack()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DAsyncCallStackTracker.cpp185 void AsyncCallStackTracker::ensureMaxAsyncCallChainDepth(AsyncCallChain* chain, unsigned maxDepth) in ensureMaxAsyncCallChainDepth() argument
187 while (chain->m_callStacks.size() > maxDepth) in ensureMaxAsyncCallChainDepth()
DInjectedScriptBase.cpp112 …g::format("Object has too long reference chain(must not be longer than %d)", JSONValue::maxDepth)); in makeCall()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Dtreeoutline.js745 TreeElement.prototype.expandRecursively = function(maxDepth) argument
754 if (isNaN(maxDepth))
755 maxDepth = 3;
758 if (depth < maxDepth)
760 item = item.traverseNextTreeElement(false, this, (depth >= maxDepth), info);
DCPUProfileView.js1060 var maxDepth = 5; // minimum stack depth for the case when we see no activity.
1091 maxDepth = Math.max(maxDepth, depth);
1164 maxStackDepth: Math.max(maxDepth, depth),
DHeapSnapshotView.js308 const maxDepth = 1;
313 current = current.traverseNextNode(false, null, (depth >= maxDepth), info);
/external/chromium_org/third_party/opus/src/celt/
Dcelt_encoder.c884 opus_val16 maxDepth; in dynalloc_analysis() local
893 maxDepth=-QCONST16(31.9f, DB_SHIFT); in dynalloc_analysis()
905 maxDepth = MAX16(maxDepth, bandLogE[c*nbEBands+i]-noise_floor[i]); in dynalloc_analysis()
991 return maxDepth; in dynalloc_analysis()
1122 opus_val16 tf_estimate, int pitch_change, opus_val16 maxDepth, in compute_vbr() argument
1199 floor_depth = (opus_int32)SHR32(MULT16_16((C*bins<<BITRES),maxDepth), DB_SHIFT); in compute_vbr()
1286 opus_val16 maxDepth; in celt_encode_with_ec() local
1734 maxDepth = dynalloc_analysis(bandLogE, bandLogE2, nbEBands, st->start, st->end, C, offsets, in celt_encode_with_ec()
1834 st->stereo_saving, tot_boost, tf_estimate, pitch_change, maxDepth, in celt_encode_with_ec()
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
Ds_tritemp.h132 const GLfloat maxDepth = ctx->DrawBuffer->_DepthMaxF; in NAME() local
339 if (span.attrStepX[FRAG_ATTRIB_WPOS][2] > maxDepth || in NAME()
340 span.attrStepX[FRAG_ATTRIB_WPOS][2] < -maxDepth) { in NAME()
/external/mesa3d/src/mesa/swrast/
Ds_tritemp.h132 const GLfloat maxDepth = ctx->DrawBuffer->_DepthMaxF; in NAME() local
339 if (span.attrStepX[FRAG_ATTRIB_WPOS][2] > maxDepth || in NAME()
340 span.attrStepX[FRAG_ATTRIB_WPOS][2] < -maxDepth) { in NAME()
/external/chromium_org/third_party/WebKit/Source/platform/
DJSONValues.h49 static const int maxDepth = 1000;

12