Searched refs:depth (Results 1 - 25 of 574) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dconstexpr-depth.cpp1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s -DMAX=128 -fconstexpr-depth 128
2 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s -DMAX=2 -fconstexpr-depth 2
3 // RUN: %clang -std=c++11 -fsyntax-only -Xclang -verify %s -DMAX=10 -fconstexpr-depth=10
5 constexpr int depth(int n) { return n > 1 ? depth(n-1) : 0; } // expected-note {{exceeded maximum depth}} expected-note +{{}} function
7 constexpr int kBad = depth(MAX + 1); // expected-error {{must be initialized by a constant expression}} expected-note {{in call to 'depth(}}
8 constexpr int kGood = depth(MAX);
/external/clang/test/CodeGen/
H A DPR4611-bitfield-layout.c5 unsigned int type:3, pack_id:16, depth:13; member in struct:object_entry
/external/valgrind/main/none/tests/amd64/
H A Dbug156404-amd64.stdout.exp0 depth 0: r = 1
2 depth 1: r = 1
3 depth 2: r = 1
4 depth 3: r = 1
5 depth 4: r = 1
6 depth 5: r = 1
7 depth 6: r = 1
8 depth 7: r = 1
9 depth 8: r = 1
10 depth
[all...]
/external/javassist/src/main/javassist/runtime/
H A DCflow.java27 private int depth; field in class:Cflow.Depth
28 Depth() { depth = 0; }
29 int get() { return depth; }
30 void inc() { ++depth; }
31 void dec() { --depth; }
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Daccess-binary-trees.js16 function bottomUpTree(item,depth){
17 if (depth>0){
19 bottomUpTree(2*item-1, depth-1)
20 ,bottomUpTree(2*item, depth-1)
39 for (var depth=minDepth; depth<=maxDepth; depth+=2){
40 var iterations = 1 << (maxDepth - depth + minDepth);
44 check += bottomUpTree(i,depth).itemCheck();
45 check += bottomUpTree(-i,depth)
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Daccess-binary-trees.js16 function bottomUpTree(item,depth){
17 if (depth>0){
19 bottomUpTree(2*item-1, depth-1)
20 ,bottomUpTree(2*item, depth-1)
39 for (var depth=minDepth; depth<=maxDepth; depth+=2){
40 var iterations = 1 << (maxDepth - depth + minDepth);
44 check += bottomUpTree(i,depth).itemCheck();
45 check += bottomUpTree(-i,depth)
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebScreenInfo.h39 // The screen depth in bits per pixel
40 int depth; member in struct:WebKit::WebScreenInfo
67 : depth(0)
/external/valgrind/main/memcheck/tests/linux/
H A Dlsframe2.c13 int rec ( int depth )
17 if (depth == 0) return 0;
19 arr[i] = i * depth;
20 zzz = rec(depth-1);
/external/valgrind/main/none/tests/
H A Dstackgrowth.c7 static void test(int depth) argument
13 if (depth > 1)
14 test(depth-1);
/external/proguard/src/proguard/shrink/
H A DShortestUsageMark.java40 private final int depth; field in class:ShortestUsageMark
53 this.depth = 0;
88 this.depth = previousUsageMark.depth + cost;
104 this.depth = otherUsageMark.depth;
134 return this.depth < otherUsageMark.depth;
178 return "certain=" + certain + ", depth="+depth
[all...]
/external/compiler-rt/lib/asan/lit_tests/
H A Ddeep_stack_uaf.cc13 template <int depth>
16 DeepFree<depth - 1>::free(x);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DListStack`1.cs45 public T Peek(int depth) argument
48 if (!TryPeek(depth, out item))
59 public bool TryPeek(int depth, out T item) argument
61 if (depth >= Count)
67 item = this[Count - depth - 1];
/external/webkit/Source/WebCore/platform/qt/
H A DPlatformScreenQt.cpp56 return QApplication::desktop()->screen(screenNumber(w))->depth();
61 int depth = QApplication::desktop()->screen(0)->depth(); local
68 depth = view->depth();
73 // values for each screen depth and assume RGB/RGBA where appropriate.
77 switch (depth) {
83 return qRound(depth / 3);
/external/webkit/Source/JavaScriptCore/wtf/
H A DAVLTree.h124 // E.g., if, in a particular instantiation, the maximum number of nodes in a tree instance is 1,000,000, the maximum depth should be 28.
165 // Initialize depth to invalid value, to indicate iterator is
167 Iterator() { depth = ~0U; }
182 depth = ~0U;
203 depth = d;
210 depth = d;
227 depth = ~0U;
232 if (depth != ~0U)
233 path_h[depth] = h;
234 depth
[all...]
/external/elfutils/libdw/
H A Ddwarf_getscopes_die.c58 scope_visitor (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg) argument
63 Dwarf_Die *scopes = malloc (depth * sizeof scopes[0]);
77 assert (i == depth);
80 return depth;
H A Dlibdw_visit_scopes.c99 __libdw_visit_scopes (depth, root, previsit, postvisit, arg)
100 unsigned int depth;
102 int (*previsit) (unsigned int depth, struct Dwarf_Die_Chain *, void *);
103 int (*postvisit) (unsigned int depth, struct Dwarf_Die_Chain *, void *);
114 return __libdw_visit_scopes (depth + 1, &child,
124 int result = (*previsit) (depth + 1, &child, arg);
169 int result = (*postvisit) (depth + 1, &child, arg);
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLContextAttributes.idl33 attribute boolean depth;
H A DWebGLContextAttributes.cpp70 bool WebGLContextAttributes::depth() const function in class:WebCore::WebGLContextAttributes
72 return m_attrs.depth;
75 void WebGLContextAttributes::setDepth(bool depth) argument
77 m_attrs.depth = depth;
/external/webkit/Source/WebKit/chromium/src/x11/
H A DWebScreenInfoFactory.cpp48 results.depth = XDisplayPlanes(display, screenNumber);
49 results.isMonochrome = results.depth == 1;
/external/qemu-pc-bios/vgabios/
H A Dvbetables-gen.c10 int depth; member in struct:__anon11280
104 if (pm->depth == 4)
107 pitch = pm->width * ((pm->depth + 7) / 8);
111 pm->mode, pm->width, pm->height, pm->depth);
112 if (pm->depth == 4)
150 if (pm->depth == 4) {
155 printf("/*Bit8u BitsPerPixel*/ %d,\n", pm->depth);
159 if (pm->depth == 4)
161 else if (pm->depth == 8)
167 if (pm->depth
[all...]
/external/dbus/tools/
H A Ddbus-print-message.c50 indent (int depth) argument
52 while (depth-- > 0)
57 print_hex (unsigned char *bytes, unsigned int len, int depth) argument
63 indent (depth + 1);
66 columns = (80 - ((depth + 1) * INDENT)) / 3;
83 indent (depth + 1);
93 indent (depth);
100 print_ay (DBusMessageIter *iter, int depth) argument
139 print_hex (bytes, len, depth);
146 print_iter (DBusMessageIter *iter, dbus_bool_t literal, int depth) argument
[all...]
/external/libvpx/vpx_mem/memory_manager/include/
H A Dcavl_impl.h104 /* The maximum depth may be greater than the number of bits in a long,
106 ** depth. */
355 /* Zero-based depth in tree. */
356 unsigned depth = 0, unbal_depth = 0; variable
374 unbal_depth = depth;
388 L_BIT_ARR_1(branch, depth)
393 L_BIT_ARR_0(branch, depth)
397 depth++;
407 depth = unbal_depth;
413 cmp = L_BIT_ARR_VAL(branch, depth)
570 unsigned depth = 0, rm_depth; variable
865 unsigned depth = 0; variable
[all...]
/external/webkit/Source/WebCore/platform/brew/
H A DScreenBrew.cpp46 int depth; member in struct:WebCore::DisplayInfo
59 info.depth = bitmapInfo.nDepth;
80 return info.depth;
/external/chromium/base/json/
H A Djson_writer.h47 void BuildJSONString(const Value* const node, int depth, bool escape);
53 void IndentLine(int depth);
/external/v8/test/mjsunit/
H A Ddeep-recursion.js33 function newdeep(start, depth) {
35 for (var i = 0; i < depth; i++) {

Completed in 628 milliseconds

1234567891011>>