Searched defs:depth (Results 1 - 25 of 785) 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.c6 unsigned int type:3, pack_id:16, depth:13; member in struct:object_entry
/external/mesa3d/src/gallium/include/state_tracker/
H A Dxlib_sw_winsys.h18 int depth; member in struct:xlib_drawable
/external/compiler-rt/test/asan/TestCases/Posix/
H A Ddeep_call_stack.cc10 void RecursiveFunc(int depth, int *ptr) { argument
11 if ((depth % 1000) == 0)
12 printf("[%05d] ptr: %p\n", depth, ptr);
13 if (depth == 0)
16 RecursiveFunc(depth - 1, &local);
/external/compiler-rt/test/msan/
H A Dstack-origin2.cc24 int f(int depth) { argument
25 if (depth) return f(depth - 1);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_clear.c51 double depth,
62 lp_setup_clear( llvmpipe->setup, color->f, depth, stencil, buffers );
48 llvmpipe_clear(struct pipe_context *pipe, unsigned buffers, const union pipe_color_union *color, double depth, unsigned stencil) argument
/external/swiftshader/src/D3D9/
H A DDirect3DVolumeTexture9.hpp31 Direct3DVolumeTexture9(Direct3DDevice9 *device, unsigned int width, unsigned int height, unsigned int depth, unsigned int levels, unsigned long usage, D3DFORMAT format, D3DPOOL pool);
72 const unsigned int depth; member in class:D3D9::Direct3DVolumeTexture9
/external/valgrind/none/tests/
H A Dstackgrowth.c7 static void test(int depth) argument
13 if (depth > 1)
14 test(depth-1);
/external/compiler-rt/test/asan/TestCases/
H A Dheavy_uar_test.cc27 void RecursiveFunctionWithStackFrame(int depth) { argument
28 if (depth <= 0) return;
30 x[0] = depth;
32 RecursiveFunctionWithStackFrame<kFrameSize>(depth - 1);
43 int depth = argc >= 3 ? atoi(argv[2]) : 500; local
45 RecursiveFunctionWithStackFrame<10>(depth);
46 RecursiveFunctionWithStackFrame<100>(depth);
47 RecursiveFunctionWithStackFrame<500>(depth);
48 RecursiveFunctionWithStackFrame<1024>(depth);
49 RecursiveFunctionWithStackFrame<2000>(depth);
[all...]
H A Duar_and_exceptions.cc21 void Func(int depth) { argument
24 if (depth)
25 Func(depth - 1);
/external/elfutils/libdw/
H A Ddwarf_getscopes_die.c37 scope_visitor (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg) argument
42 Dwarf_Die *scopes = malloc (depth * sizeof scopes[0]);
56 assert (i == depth);
59 return depth;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_clear.h43 const union pipe_color_union *color, double depth, unsigned stencil)
56 depth, stencil,
41 util_clear(struct pipe_context *pipe, struct pipe_framebuffer_state *framebuffer, unsigned buffers, const union pipe_color_union *color, double depth, unsigned stencil) argument
/external/valgrind/memcheck/tests/solaris/
H A Dlsframe2.c11 int rec(int depth) argument
15 if (depth == 0) return 0;
17 arr[i] = i * depth;
18 zzz = rec(depth-1);
/external/ImageMagick/coders/
H A Dpsd-private.h39 depth, member in struct:_PSDInfo
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DMultiSynch.java72 * @param depth
74 private static void run(Object[] params, Object[] synchArr, Action action, int depth) { argument
76 synchronized (synchArr[depth]) {
77 if (depth < synchArr.length - 1) {
78 run(params, synchArr, action, ++depth);
/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/compiler-rt/test/asan/TestCases/Linux/
H A Duar_signals.cc42 void RecursiveFunction(int depth) { argument
43 if (depth == 0) return;
47 // printf("[%2d] n_signals: %d\n", depth, n_signals);
48 RecursiveFunction(depth - 1);
49 RecursiveFunction(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.c53 int depth = 0; local
57 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/libdrm/tests/planetest/
H A Dbo.h13 uint32_t depth; member in struct:sp_bo
26 uint32_t depth, uint32_t format, uint32_t flags);
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_transfer.h16 uint16_t depth; member in struct:nv50_m2mf_rect
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_clear.c50 double depth, unsigned stencil)
76 cv = util_pack64_z_stencil(ps->format, depth, stencil);
48 softpipe_clear(struct pipe_context *pipe, unsigned buffers, const union pipe_color_union *color, double depth, unsigned stencil) argument
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_clear.c41 double depth,
89 ret = SVGA3D_ClearRect(svga->swc, flags, uc.ui, depth, stencil,
109 double depth, unsigned stencil)
121 ret = try_clear( svga, buffers, color, depth, stencil );
128 ret = try_clear( svga, buffers, color, depth, stencil );
38 try_clear(struct svga_context *svga, unsigned buffers, const union pipe_color_union *color, double depth, unsigned stencil) argument
107 svga_clear(struct pipe_context *pipe, unsigned buffers, const union pipe_color_union *color, double depth, unsigned stencil) argument
/external/mesa3d/src/glx/
H A Dcompsize.c140 __glImageSize(GLsizei width, GLsizei height, GLsizei depth, argument
162 if (width < 0 || height < 0 || depth < 0) {
182 return bytes_per_row * height * depth * components;

Completed in 855 milliseconds

1234567891011>>