/external/clang/test/SemaCXX/ |
H A D | constexpr-depth.cpp | 1 // 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 D | PR4611-bitfield-layout.c | 6 unsigned int type:3, pack_id:16, depth:13; member in struct:object_entry
|
/external/mesa3d/src/gallium/include/state_tracker/ |
H A D | xlibsw_api.h | 15 int depth; member in struct:xlib_drawable
|
/external/mesa3d/src/mesa/main/ |
H A D | texstorage.h | 39 GLsizei height, GLsizei depth, bool dsa); 42 * Texture width, height and depth check shared with the 47 * "An INVALID_VALUE error is generated if width, height, depth 55 _mesa_valid_tex_storage_dim(GLsizei width, GLsizei height, GLsizei depth) argument 57 if (width < 1 || height < 1 || depth < 1) 81 GLsizei width, GLsizei height, GLsizei depth); 95 GLsizei width, GLsizei height, GLsizei depth); 111 GLsizei width, GLsizei height, GLsizei depth); 121 GLsizei height, GLsizei depth);
|
/external/compiler-rt/test/asan/TestCases/Posix/ |
H A D | deep_call_stack.cc | 10 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 D | stack-origin2.cc | 24 int f(int depth) { argument 25 if (depth) return f(depth - 1);
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_clear.c | 51 double depth, 62 lp_setup_clear( llvmpipe->setup, color, depth, stencil, buffers ); 48 llvmpipe_clear(struct pipe_context *pipe, unsigned buffers, const union pipe_color_union *color, double depth, unsigned stencil) argument
|
/external/valgrind/none/tests/ |
H A D | stackgrowth.c | 7 static void test(int depth) argument 13 if (depth > 1) 14 test(depth-1);
|
/external/compiler-rt/test/asan/TestCases/ |
H A D | heavy_uar_test.cc | 27 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 D | uar_and_exceptions.cc | 21 void Func(int depth) { argument 24 if (depth) 25 Func(depth - 1);
|
/external/elfutils/libdw/ |
H A D | dwarf_getscopes_die.c | 37 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 D | u_resource.c | 42 unsigned depth = res->depth0; local 52 slices = depth; 61 depth = u_minify(depth, 1);
|
/external/mesa3d/src/gallium/drivers/freedreno/ |
H A D | freedreno_surface.h | 40 uint16_t depth; member in struct:fd_surface
|
/external/swiftshader/src/D3D8/ |
H A D | Direct3DVolumeTexture8.hpp | 31 Direct3DVolumeTexture8(Direct3DDevice8 *device, unsigned int width, unsigned int height, unsigned int depth, unsigned int levels, unsigned long usage, D3DFORMAT format, D3DPOOL pool); 69 const unsigned int depth; member in class:D3D8::Direct3DVolumeTexture8
|
/external/swiftshader/src/D3D9/ |
H A D | Direct3DVolumeTexture9.hpp | 31 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/memcheck/tests/solaris/ |
H A D | lsframe2.c | 11 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 D | psd-private.h | 39 depth, member in struct:_PSDInfo
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/ |
H A D | MultiSynch.java | 72 * @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 D | ListStack`1.cs | 45 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 D | uar_signals.cc | 42 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 D | Hierarchy.java | 57 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 D | elements.c | 53 int depth = 0; local 57 XML_SetUserData(parser, &depth);
|
/external/javassist/src/main/javassist/runtime/ |
H A D | Cflow.java | 27 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 D | bo.h | 13 uint32_t depth; member in struct:sp_bo 26 uint32_t depth, uint32_t format, uint32_t flags);
|
/external/mesa3d/src/gallium/drivers/nouveau/nv50/ |
H A D | nv50_transfer.h | 16 uint16_t depth; member in struct:nv50_m2mf_rect
|