Searched defs:depth (Results 1 - 25 of 958) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-353551.js28 var depth = 0; variable
32 depth++;
33 if (depth > 3000) return;
/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/chromium_org/third_party/mesa/src/src/gallium/include/state_tracker/
H A Dxlib_sw_winsys.h18 int depth; member in struct:xlib_drawable
/external/chromium_org/v8/test/mjsunit/
H A Djson-stringify-recursive.js46 var depth = 10000; variable
48 for (var i = 0; i < depth; i++) deepArray = [deepArray];
53 for (var i = 0; i < depth; i++) deepObject = { next: deepObject };
/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/chromium_org/chrome/browser/bookmarks/
H A Dbookmark_stats.cc24 // In the cases where a bookmark node is provided, record the depth of the
26 int depth = 0; local
28 depth++;
30 // Record |depth - 2| to offset the invisible root node and permanent nodes
32 UMA_HISTOGRAM_COUNTS("Bookmarks.LaunchDepth", depth - 2);
/external/chromium_org/third_party/mesa/src/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/chromium_org/tools/gyp/test/generator-output/
H A Dgyptest-depth.py9 and --depth= options is used to put the build configuration files in a separate
26 depth=toplevel_dir, variable
/external/compiler-rt/test/asan/TestCases/
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);
H A Duar_and_exceptions.cc24 void Func(int depth) { argument
27 if (depth)
28 Func(depth - 1);
/external/lldb/test/lang/c/recurse/
H A Dmain.c5 recurse_crash (uint32_t depth) argument
7 if (depth > 0)
8 return recurse_crash (depth - 1);
15 // If we have more than one argument, then it should a depth to recurse to.
18 uint32_t depth = UINT32_MAX; local
22 depth = strtoul (argv[1], &end, 0);
24 depth = UINT32_MAX;
26 recurse_crash (depth);
/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/valgrind/main/none/tests/
H A Dstackgrowth.c7 static void test(int depth) argument
13 if (depth > 1)
14 test(depth-1);
/external/chromium_org/third_party/cld/base/
H A Dcrash.h13 CrashReason() : filename(0), line_number(0), message(0), depth(0) {}
22 int depth; member in struct:base::CrashReason
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/npapi/bindings/
H A Dnpapi_x11.h57 unsigned int depth; member in struct:_NPSetWindowCallbackStruct
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dheavy_uar_test.cc30 void RecuriveFunctionWithStackFrame(int depth) { argument
31 if (depth <= 0) return;
33 x[0] = depth;
35 RecuriveFunctionWithStackFrame<kFrameSize>(depth - 1);
40 int depth = argc >= 3 ? atoi(argv[2]) : 500; local
42 RecuriveFunctionWithStackFrame<10>(depth);
43 RecuriveFunctionWithStackFrame<100>(depth);
44 RecuriveFunctionWithStackFrame<500>(depth);
45 RecuriveFunctionWithStackFrame<1024>(depth);
46 RecuriveFunctionWithStackFrame<2000>(depth);
[all...]
/external/elfutils/0.153/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/ltrace/sysdeps/linux-gnu/m68k/
H A Dtrace.c52 int depth; local
60 depth = proc->callstack_depth;
61 if (depth > 0 &&
62 proc->callstack[depth - 1].is_syscall &&
63 proc->callstack[depth - 1].c_un.syscall == *sysnum) {
/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/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/chromium_org/extensions/common/
H A Dextension_resource.cc67 int depth = 0; local
72 depth--;
74 depth++;
76 if (depth < 0) {
/external/chromium_org/net/third_party/nss/ssl/
H A Dcmpcert.c33 int depth; local
41 depth=0;
72 if ( ( depth <= 20 ) &&
79 depth++;
/external/chromium_org/pdf/
H A Ddraw_utils.h60 // depth - how big matrix should be. Shadow will go smoothly across the
62 // If factor == 1, smoothing will be linear from 0 to the end (depth),
64 // if factor > 1, smoothing will drop faster near the end (depth).
65 ShadowMatrix(uint32 depth, double factor, uint32 background);
71 uint32 depth() const { return depth_; } function in class:chrome_pdf::ShadowMatrix

Completed in 505 milliseconds

1234567891011>>