Searched defs:depth (Results 1 - 25 of 342) 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/
H A Dstackgrowth.c7 static void test(int depth) argument
13 if (depth > 1)
14 test(depth-1);
H A Dthread-exits.c47 static void grow(int depth) argument
53 if (depth > 1)
54 grow(depth-1);
/external/dbus/dbus/
H A Ddbus-message-factory.h47 int depth; member in struct:__anon5023
/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;
/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/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/doclava/src/com/google/doclava/
H A DHierarchy.java57 int depth = depth(nodes, "java.lang.Object");
60 hdf.setValue("colspan", "" + depth);
62 recurse(nodes, "java.lang.Object", hdf.getChild("classes.0"), depth, depth);
76 private static int depth(HashMap<String, TreeSet<String>> nodes, String name) { method in class:Hierarchy
81 int n = depth(nodes, s);
/external/expat/examples/
H A Delements.c49 int depth = 0; local
50 XML_SetUserData(parser, &depth);
/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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DTextureGeneratorNoise.java61 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
65 int halfW = width >> 1, halfH = height >> 1, halfD = depth >> 1, index = 0;
71 byte[] data = new byte[width * height * depth * bytesPerPixel];
104 return new Texture3D(new Image(format, width, height, depth, dataArray));
H A DTextureGeneratorStucci.java61 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
75 int halfW = width >> 1, halfH = height >> 1, halfD = depth >> 1, index = 0;
81 byte[] data = new byte[width * height * depth * bytesPerPixel];
123 return new Texture3D(new Image(format, width, height, depth, dataArray));
H A DTextureGeneratorBlend.java117 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
121 int halfW = width >> 1, halfH = height >> 1, halfD = depth >> 1, index = 0;
129 byte[] data = new byte[width * height * depth * bytesPerPixel];
162 return new Texture3D(new Image(format, width, height, depth, dataArray));
H A DTextureGeneratorClouds.java68 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
79 int halfW = width >> 1, halfH = height >> 1, halfD = depth >> 1, index = 0;
86 byte[] data = new byte[width * height * depth * bytesPerPixel];
129 return new Texture3D(new Image(format, width, height, depth, dataArray));
H A DTextureGeneratorMagic.java124 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
130 int halfW = width >> 1, halfH = height >> 1, halfD = depth >> 1, index = 0;
135 byte[] data = new byte[width * height * depth * 4];
185 return new Texture3D(new Image(Format.RGBA8, width, height, depth, dataArray));
H A DTextureGeneratorVoronoi.java62 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
75 int halfW = width >> 1, halfH = height >> 1, halfD = depth >> 1, index = 0;
93 byte[] data = new byte[width * height * depth * bytesPerPixel];
159 return new Texture3D(new Image(format, width, height, depth, dataArray));
/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/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/chromium/base/
H A Dlogging_win.cc67 DWORD depth = 0; local
72 depth = CaptureStackBackTrace(2, kMaxBacktraceDepth, backtrace, NULL);
79 event.SetField(0, sizeof(depth), &depth);
80 event.SetField(1, sizeof(backtrace[0]) * depth, &backtrace);
/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/webkit/Source/WebCore/html/canvas/
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/chromium/base/debug/
H A Dtrace_event_win.cc84 DWORD depth = CaptureStackBackTrace(0, local
88 event.SetField(3, sizeof(depth), &depth);
89 event.SetField(4, sizeof(backtrace[0]) * depth, backtrace);
/external/chromium/base/json/
H A Djson_writer.cc53 int depth,
134 BuildJSONString(value, depth, escape);
165 IndentLine(depth + 1);
172 BuildJSONString(value, depth + 1, escape);
177 IndentLine(depth);
197 void JSONWriter::IndentLine(int depth) { argument
200 json_string_->append(std::string(depth * 3, ' '));
52 BuildJSONString(const Value* const node, int depth, bool escape) argument
/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...]

Completed in 1861 milliseconds

1234567891011>>