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

12

/external/chromium_org/third_party/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/chromium_org/third_party/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_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
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-trace/trace-viewer/src/tracing/analysis/
H A Dgeneric_object_view.js43 label, object, indent, depth, maxDepth, suffix) {
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) {
104 indent, depth + 1, maxDepth,
110 indent + label.length + 1, depth + 1, maxDepth,
117 label, object, indent, depth, maxDepth, suffix) {
127 indent, depth, maxDepth,
133 indent + label.length + 1, depth + 1, maxDepth,
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DDetectCallDepth.cpp36 int maxDepth = depth; local
55 maxDepth = std::max(callDepth, maxDepth);
64 return maxDepth;
76 maxDepth(limitCallStackDepth ? maxCallStackDepth : FunctionNode::kInfiniteCallDepth)
129 return depth >= maxDepth;
149 if (maxCallDepth >= maxDepth)
157 if (maxDepth != FunctionNode::kInfiniteCallDepth) {
H A DDetectCallDepth.h72 int maxDepth; member in class:DetectCallDepth
/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/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DClassDefsSection.java154 * @param maxDepth maximum recursion depth; if negative, this will
158 private int orderItems0(Type type, int idx, int maxDepth) { argument
165 if (maxDepth < 0) {
169 maxDepth--;
174 idx = orderItems0(superclass, idx, maxDepth);
180 idx = orderItems0(interfaces.getType(i), idx, maxDepth);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptValue.cpp81 return v8ToJSONValue(scriptState->isolate(), v8Value(), JSONValue::maxDepth);
H A DV8Binding.cpp884 PassRefPtr<JSONValue> v8ToJSONValue(v8::Isolate* isolate, v8::Handle<v8::Value> value, int maxDepth) argument
891 if (!maxDepth)
893 maxDepth--;
909 RefPtr<JSONValue> element = v8ToJSONValue(isolate, value, maxDepth);
926 RefPtr<JSONValue> propertyValue = v8ToJSONValue(isolate, object->Get(name), maxDepth);
/external/skia/src/core/
H A DSkQuadTree.cpp147 int maxDepth = 0; local
150 maxDepth = SkMax32(maxDepth, getDepth(node->fChildren[index]));
153 return maxDepth + 1;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCPUProfileDataModel.js69 this.maxDepth = 0;
74 if (depth > this.maxDepth)
75 this.maxDepth = depth;
214 this._stackStartTimes = new Float64Array(this.maxDepth + 2);
217 this._stackChildrenDuration = new Float64Array(this.maxDepth + 2);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DCPUProfileFlameChart.js157 var maxDepth = 5;
170 maxDepth = Math.max(maxDepth, depth);
191 this._maxStackDepth = maxDepth;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmatrix.c658 * \param maxDepth maximum stack depth.
661 * Allocates an array of \p maxDepth elements for the matrix stack and calls
666 GLuint maxDepth, GLuint dirtyFlag )
671 stack->MaxDepth = maxDepth;
674 stack->Stack = (GLmatrix *) CALLOC(maxDepth * sizeof(GLmatrix));
675 for (i = 0; i < maxDepth; i++) {
665 init_matrix_stack( struct gl_matrix_stack *stack, GLuint maxDepth, GLuint dirtyFlag ) argument
/external/deqp/framework/randomshaders/
H A DrsgUtils.cpp249 int maxDepth = 0; local
271 maxDepth = de::max(maxDepth, depth);
273 return maxDepth + 1;
/external/mesa3d/src/mesa/main/
H A Dmatrix.c658 * \param maxDepth maximum stack depth.
661 * Allocates an array of \p maxDepth elements for the matrix stack and calls
666 GLuint maxDepth, GLuint dirtyFlag )
671 stack->MaxDepth = maxDepth;
674 stack->Stack = (GLmatrix *) CALLOC(maxDepth * sizeof(GLmatrix));
675 for (i = 0; i < maxDepth; i++) {
665 init_matrix_stack( struct gl_matrix_stack *stack, GLuint maxDepth, GLuint dirtyFlag ) argument
/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/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A Dtreeoutline.js775 TreeElement.prototype.expandRecursively = function(maxDepth)
784 if (isNaN(maxDepth))
785 maxDepth = 3;
788 if (depth < maxDepth)
790 item = item.traverseNextTreeElement(false, this, (depth >= maxDepth), info);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DAsyncCallStackTracker.cpp442 void AsyncCallStackTracker::ensureMaxAsyncCallChainDepth(AsyncCallChain* chain, unsigned maxDepth) argument
444 while (chain->m_callStacks.size() > maxDepth)
H A DInjectedScriptBase.cpp165 *result = JSONString::create(String::format("Object has too long reference chain(must not be longer than %d)", JSONValue::maxDepth));
/external/chromium_org/third_party/opus/src/celt/
H A Dcelt_encoder.c896 opus_val16 maxDepth; local
905 maxDepth=-QCONST16(31.9f, DB_SHIFT);
917 maxDepth = MAX16(maxDepth, bandLogE[c*nbEBands+i]-noise_floor[i]);
1003 return maxDepth;
1135 opus_val16 tf_estimate, int pitch_change, opus_val16 maxDepth,
1213 floor_depth = (opus_int32)SHR32(MULT16_16((C*bins<<BITRES),maxDepth), DB_SHIFT);
1216 /*printf("%f %d\n", maxDepth, floor_depth);*/
1300 opus_val16 maxDepth; local
1763 maxDepth
1132 compute_vbr(const CELTMode *mode, AnalysisInfo *analysis, opus_int32 base_target, int LM, opus_int32 bitrate, int lastCodedBands, int C, int intensity, int constrained_vbr, opus_val16 stereo_saving, int tot_boost, opus_val16 tf_estimate, int pitch_change, opus_val16 maxDepth, int variable_duration, int lfe, int has_surround_mask, opus_val16 surround_masking, opus_val16 temporal_vbr) argument
[all...]
/external/libopus/celt/
H A Dcelt_encoder.c896 opus_val16 maxDepth; local
905 maxDepth=-QCONST16(31.9f, DB_SHIFT);
917 maxDepth = MAX16(maxDepth, bandLogE[c*nbEBands+i]-noise_floor[i]);
1003 return maxDepth;
1135 opus_val16 tf_estimate, int pitch_change, opus_val16 maxDepth,
1213 floor_depth = (opus_int32)SHR32(MULT16_16((C*bins<<BITRES),maxDepth), DB_SHIFT);
1216 /*printf("%f %d\n", maxDepth, floor_depth);*/
1300 opus_val16 maxDepth; local
1763 maxDepth
1132 compute_vbr(const CELTMode *mode, AnalysisInfo *analysis, opus_int32 base_target, int LM, opus_int32 bitrate, int lastCodedBands, int C, int intensity, int constrained_vbr, opus_val16 stereo_saving, int tot_boost, opus_val16 tf_estimate, int pitch_change, opus_val16 maxDepth, int variable_duration, int lfe, int has_surround_mask, opus_val16 surround_masking, opus_val16 temporal_vbr) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DJSONValues.h49 static const int maxDepth = 1000; member in class:blink::JSONValue
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_tritemp.h132 const GLfloat maxDepth = ctx->DrawBuffer->_DepthMaxF; local
339 if (span.attrStepX[FRAG_ATTRIB_WPOS][2] > maxDepth ||
340 span.attrStepX[FRAG_ATTRIB_WPOS][2] < -maxDepth) {
/external/mesa3d/src/mesa/swrast/
H A Ds_tritemp.h132 const GLfloat maxDepth = ctx->DrawBuffer->_DepthMaxF; local
339 if (span.attrStepX[FRAG_ATTRIB_WPOS][2] > maxDepth ||
340 span.attrStepX[FRAG_ATTRIB_WPOS][2] < -maxDepth) {

Completed in 716 milliseconds

12