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

1 2

  /libcore/dalvik/src/main/java/dalvik/system/
VMStack.java 55 * @param maxDepth
59 native public static Class<?>[] getClasses(int maxDepth);
  /external/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/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);
  /frameworks/native/libs/utils/
CallStack.cpp 33 CallStack::CallStack(const char* logtag, int32_t ignoreDepth, int32_t maxDepth) {
34 this->update(ignoreDepth+1, maxDepth);
96 void CallStack::update(int32_t ignoreDepth, int32_t maxDepth) {
97 if (maxDepth > MAX_DEPTH) {
98 maxDepth = MAX_DEPTH;
100 ssize_t count = unwind_backtrace(mStack, ignoreDepth + 1, maxDepth);
  /frameworks/native/include/utils/
CallStack.h 39 int32_t maxDepth=MAX_DEPTH);
56 void update(int32_t ignoreDepth=1, int32_t maxDepth=MAX_DEPTH);
  /external/webkit/Source/JavaScriptCore/wtf/
AVLTree.h 56 // // 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 - 1]
    [all...]
  /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;
  /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 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/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];
  /packages/inputmethods/LatinIME/native/jni/src/
terminal_attributes.h 45 inline int getNextShortcutTarget(const int maxDepth, int *outWord, int *outFreq) {
binary_format.h 92 static int getWordAtAddress(const uint8_t *const root, const int address, const int maxDepth,
553 const int maxDepth, int *outWord, int *outUnigramProbability) {
563 for (int loopCount = maxDepth; loopCount > 0; --loopCount) {
580 int charCount = maxDepth;
642 int charCount = maxDepth;
    [all...]
correction.h 60 void initCorrection(const ProximityInfo *pi, const int inputSize, const int maxDepth);
correction.cpp 79 void Correction::initCorrection(const ProximityInfo *pi, const int inputSize, const int maxDepth) {
82 mMaxDepth = maxDepth;
    [all...]
unigram_dictionary.cpp 286 const int maxDepth = min(inputSize * MAX_DEPTH_MULTIPLIER, MAX_WORD_LENGTH);
287 correction->initCorrection(proximityInfo, inputSize, maxDepth);
    [all...]
  /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++)
  /external/webkit/Source/WebCore/inspector/front-end/
treeoutline.js 750 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);
DetailedHeapshotView.js 638 const maxDepth = 1;
643 current = current.traverseNextNode(false, null, (depth >= maxDepth), info);
    [all...]
HeapSnapshotView.js 262 const maxDepth = 2;
267 current = current.traverseNextNode(false, null, (depth >= maxDepth), info);
    [all...]
  /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...]
  /frameworks/native/opengl/libagl/
context.h 446 uint8_t maxDepth;
  /external/webkit/Source/WebCore/bindings/v8/
SerializedScriptValue.cpp 95 static const int maxDepth = 20000;
609 if (m_depth > maxDepth)
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorJS.pm     [all...]

Completed in 879 milliseconds

1 2