HomeSort by relevance Sort by last modified time
    Searched refs:maxDepth (Results 1 - 25 of 69) sorted by null

1 2 3

  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
binary_dictionary_shortcut_iterator.h 41 const int maxDepth, int *const outTarget, int *const outTargetLength,
43 mShortcutStructurePolicy->getNextShortcut(maxDepth, outTarget, outTargetLength,
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
access-binary-trees.js 33 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/
access-binary-trees.js 33 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/
access-binary-trees.js 33 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/angle/src/compiler/translator/
DetectCallDepth.cpp 36 int maxDepth = depth;
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) {
DetectCallDepth.h 72 int maxDepth;
intermediate.h 643 maxDepth(0) {}
656 int getMaxDepth() const {return maxDepth;}
661 maxDepth = std::max(maxDepth, depth);
687 int maxDepth;
716 bool depthCheck() const { return maxDepth < depthLimit; }
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ClassDefsSection.java 154 * @param maxDepth maximum recursion depth; if negative, this will
158 private int orderItems0(Type type, int idx, int maxDepth) {
165 if (maxDepth < 0) {
169 maxDepth--;
174 idx = orderItems0(superclass, idx, maxDepth);
180 idx = orderItems0(interfaces.getType(i), idx, maxDepth);
  /dalvik/dx/src/com/android/dx/dex/file/
ClassDefsSection.java 153 * @param maxDepth maximum recursion depth; if negative, this will
157 private int orderItems0(Type type, int idx, int maxDepth) {
164 if (maxDepth < 0) {
168 maxDepth--;
173 idx = orderItems0(superclass, idx, maxDepth);
179 idx = orderItems0(interfaces.getType(i), idx, maxDepth);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ClassDefsSection.java 154 * @param maxDepth maximum recursion depth; if negative, this will
158 private int orderItems0(Type type, int idx, int maxDepth) {
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/v8/
ScriptValue.cpp 78 return v8ToJSONValue(scriptState->isolate(), v8Value(), JSONValue::maxDepth);
V8Binding.cpp 840 PassRefPtr<JSONValue> v8ToJSONValue(v8::Isolate* isolate, v8::Handle<v8::Value> value, int maxDepth)
847 if (!maxDepth)
849 maxDepth--;
865 RefPtr<JSONValue> element = v8ToJSONValue(isolate, value, maxDepth);
    [all...]
  /external/clang/bindings/python/examples/cindex/
cindex-dump.py 40 if opts.maxDepth is not None and depth >= opts.maxDepth:
68 parser.add_option("", "--max-depth", dest="maxDepth",
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixStack.java 32 public MatrixStack(int maxDepth) {
33 commonInit(maxDepth);
36 private void commonInit(int maxDepth) {
37 mMatrix = new float[maxDepth * MATRIX_SIZE];
  /external/chromium_org/third_party/skia/src/core/
SkQuadTree.cpp 147 int maxDepth = 0;
150 maxDepth = SkMax32(maxDepth, getDepth(node->fChildren[index]));
153 return maxDepth + 1;
  /external/skia/src/core/
SkQuadTree.cpp 147 int maxDepth = 0;
150 maxDepth = SkMax32(maxDepth, getDepth(node->fChildren[index]));
153 return maxDepth + 1;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
CPUProfileModel.js 60 this.maxDepth = 0;
65 if (depth > this.maxDepth)
66 this.maxDepth = depth;
205 this._stackStartTimes = new Float64Array(this.maxDepth + 2);
208 this._stackChildrenDuration = new Float64Array(this.maxDepth + 2);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptBase.cpp 118 *result = JSONString::create(String::format("Object has too long reference chain(must not be longer than %d)", JSONValue::maxDepth));
AsyncCallStackTracker.cpp 329 void AsyncCallStackTracker::ensureMaxAsyncCallChainDepth(AsyncCallChain* chain, unsigned maxDepth)
331 while (chain->m_callStacks.size() > maxDepth)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CPUProfileFlameChart.js 139 var maxDepth = 5;
152 maxDepth = Math.max(maxDepth, depth);
173 this._maxStackDepth = maxDepth;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
matrix.c 251 if (stack->Depth + 1 >= stack->MaxDepth) {
658 * \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++) {
693 for (i = 0; i < stack->MaxDepth; i++) {
  /external/deqp/framework/randomshaders/
rsgUtils.cpp 249 int maxDepth = 0;
271 maxDepth = de::max(maxDepth, depth);
273 return maxDepth + 1;
  /external/mesa3d/src/mesa/main/
matrix.c 251 if (stack->Depth + 1 >= stack->MaxDepth) {
658 * \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++) {
693 for (i = 0; i < stack->MaxDepth; i++) {
  /external/srec/tools/grxmlcompile/
sub_min.cpp 122 int ii, jj, dd, maxDepth, count, itCnt;
124 maxDepth= 0;
126 if (maxDepth < depthMap[ii])
127 maxDepth= depthMap[ii];
133 for (dd= 0; dd <= maxDepth; dd++)
  /frameworks/base/core/java/com/android/internal/util/
StateMachine.java 929 int maxDepth = 0;
935 if (maxDepth < depth) {
936 maxDepth = depth;
939 if (mDbg) mSm.log("completeConstruction: maxDepth=" + maxDepth);
941 mStateStack = new StateInfo[maxDepth];
942 mTempStateStack = new StateInfo[maxDepth]
    [all...]

Completed in 789 milliseconds

1 2 3