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

1 2

  /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_dx11/src/compiler/
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 74 int maxDepth;
intermediate.h 549 maxDepth(0) {}
561 int getMaxDepth() const {return maxDepth;}
562 void incrementDepth() {depth++; maxDepth = std::max(maxDepth, depth); }
576 int maxDepth;
  /system/core/libutils/
CallStack.cpp 31 CallStack::CallStack(const char* logtag, int32_t ignoreDepth, int32_t maxDepth) {
32 this->update(ignoreDepth+1, maxDepth, CURRENT_THREAD);
94 void CallStack::update(int32_t ignoreDepth, int32_t maxDepth, pid_t tid) {
95 if (maxDepth > MAX_DEPTH) {
96 maxDepth = MAX_DEPTH;
101 count = unwind_backtrace_thread(tid, mStack, ignoreDepth + 1, maxDepth);
103 count = unwind_backtrace(mStack, ignoreDepth + 1, maxDepth);
ProcessCallStack.cpp 126 void ProcessCallStack::update(int32_t maxDepth) {
185 cs.update(ignoreDepth, maxDepth, tid);
  /external/chromium_org/content/browser/indexed_db/leveldb/
avltree.h 60 // // Must return a valid value for index when 0 <= index < maxDepth
70 template <unsigned maxDepth>
75 CHECK(i < maxDepth);
80 for (unsigned i = 0; i < maxDepth; ++i)
84 for (unsigned i = 0; i < maxDepth; ++i)
89 FixedArray<bool, maxDepth> data_;
92 // How to determine maxDepth:
145 unsigned maxDepth = 32,
146 class BSet = AVLTreeDefaultBSet<maxDepth> >
346 static const size_t kPathSize = maxDepth - 1
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptValue.cpp 87 static PassRefPtr<JSONValue> v8ToJSONValue(v8::Handle<v8::Value> value, int maxDepth)
94 if (!maxDepth)
96 maxDepth--;
112 RefPtr<JSONValue> element = v8ToJSONValue(value, maxDepth);
129 RefPtr<JSONValue> propertyValue = v8ToJSONValue(object->Get(name), maxDepth);
145 return v8ToJSONValue(v8Value(), JSONValue::maxDepth);
  /libcore/libdvm/src/main/java/dalvik/system/
VMStack.java 55 * @param maxDepth
59 native public static Class<?>[] getClasses(int maxDepth);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/
script.js 14 var maxDepth = 0;
30 if (maxDepth < tempDepth) {
31 maxDepth = tempDepth;
42 depths[0] = maxDepth;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/
script.js 18 var maxDepth = 0;
34 if (maxDepth < tempDepth) {
35 maxDepth = tempDepth;
46 depths[0] = maxDepth;
  /system/core/include/utils/
CallStack.h 46 int32_t maxDepth=MAX_DEPTH);
69 void update(int32_t ignoreDepth=1, int32_t maxDepth=MAX_DEPTH, pid_t tid=CURRENT_THREAD);
ProcessCallStack.h 42 void update(int32_t maxDepth = CallStack::MAX_DEPTH);
  /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/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/WebKit/Source/core/inspector/
InjectedScriptBase.cpp 111 *result = JSONString::create(String::format("Object has too long reference chain(must not be longer than %d)", JSONValue::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/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++)

Completed in 654 milliseconds

1 2