Searched refs:depth (Results 1 - 25 of 1467) 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/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/clang/test/CodeGen/
H A DPR4611-bitfield-layout.c6 unsigned int type:3, pack_id:16, depth:13; member in struct:object_entry
/external/valgrind/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/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);
H A Ddeep_stack_uaf.cc10 template <int depth>
13 DeepFree<depth - 1>::free(x);
/external/compiler-rt/test/msan/
H A Dstack-origin2.cc24 int f(int depth) { argument
25 if (depth) return f(depth - 1);
/external/valgrind/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/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/valgrind/none/tests/
H A Dstackgrowth.c7 static void test(int depth) argument
13 if (depth > 1)
14 test(depth-1);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_resource.c42 unsigned depth = res->depth0; local
52 slices = depth;
61 depth = u_minify(depth, 1);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_clear.h41 double depth, unsigned stencil);
H A Dlp_clear.c51 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/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_clear.h40 double depth, unsigned stencil);
/external/mesa3d/src/gallium/include/state_tracker/
H A Dxlibsw_api.h15 int depth; member in struct:xlib_drawable
/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/mesa3d/src/mesa/main/
H A Ddepth.h2 * \file depth.h
41 _mesa_ClearDepth( GLclampd depth );
44 _mesa_ClearDepthf( GLclampf depth );
/external/llvm/tools/llvm-c-test/
H A Dcalc.c45 int depth = 0; local
58 if (depth < 2) {
63 stack[depth - 2] = LLVMBuildBinOp(builder, op_to_opcode(tok),
64 stack[depth - 1], stack[depth - 2], "");
65 depth--;
72 if (depth < 1) {
77 off = LLVMBuildGEP(builder, param, &stack[depth - 1], 1, "");
78 stack[depth - 1] = LLVMBuildLoad(builder, off, "");
91 if (depth >
[all...]
/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/v8/src/compiler/
H A Djs-context-specialization.cc36 DCHECK_LE(new_depth, access.depth());
38 if (new_depth == access.depth() &&
55 DCHECK_LE(new_depth, access.depth());
57 if (new_depth == access.depth() &&
73 size_t depth = access.depth(); local
76 Node* outer = NodeProperties::GetOuterContext(node, &depth);
83 return SimplifyJSLoadContext(node, outer, depth);
86 // Now walk up the concrete context chain for the remaining depth.
87 for (; depth >
121 size_t depth = access.depth(); local
[all...]
/external/gemmlowp/internal/
H A Dcompute.h51 void Compute(int depth) { argument
52 depth = RoundUp<Format::kDepth>(depth);
53 assert(depth <= block_params_.l2_depth);
54 for (int d = 0; d < depth; d += block_params_.l1_depth) {
55 int ds = std::min(block_params_.l1_depth, depth - d);
67 int depth) GEMMLOWP_NOINLINE {
74 packed_rhs_.current_data(), start_depth, depth);
78 int start_depth, int depth) {
81 assert(depth
77 ComputeL1(int start_row, int rows, int start_col, int cols, int start_depth, int depth) argument
92 Compute(const KernelBase& kernel, const BlockParams& block_params, PackedResult* packed_result, const PackedLhs& packed_lhs, const PackedRhs& packed_rhs, int depth) argument
[all...]
/external/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/
H A DMessagePatternUtilDemo.java29 private static final void printMessage(MessagePatternUtil.MessageNode msg, int depth) { argument
30 String indent = manySpaces.substring(0, depth * 2);
38 printArg((MessagePatternUtil.ArgNode)contents, depth);
47 private static final void printArg(MessagePatternUtil.ArgNode arg, int depth) { argument
48 System.out.print(manySpaces.substring(0, depth * 2) + "arg: «" + arg.getName() + "»");
63 printComplexArgStyle(arg.getComplexStyle(), depth + 1);
69 int depth) {
71 System.out.println(manySpaces.substring(0, depth * 2) + "offset: " + style.getOffset());
73 String indent = manySpaces.substring(0, depth * 2);
94 printMessage(variant.getMessage(), depth
68 printComplexArgStyle(MessagePatternUtil.ComplexArgStyleNode style, int depth) argument
126 genCode(MessagePatternUtil.MessageNode msg, int depth, boolean firstResult, String pluralNumber) argument
151 genCode(MessagePatternUtil.ArgNode arg, int depth, boolean firstResult) argument
177 genCodeForPlural(MessagePatternUtil.ComplexArgStyleNode style, int depth, boolean firstResult, String argName) argument
208 genCodeForSelect(MessagePatternUtil.ComplexArgStyleNode style, int depth, boolean firstResult, String argName) argument
224 genCodeForNumericVariants(List<VariantNode> variants, int depth, boolean firstResult, String varName, String pluralNumber) argument
242 genCodeForKeywordVariants(List<VariantNode> variants, int depth, boolean firstResult, String varName, String pluralNumber) argument
[all...]
/external/v8/src/
H A Dd8.js26 function Stringify(x, depth) {
27 if (depth === undefined)
28 depth = stringifyDepthLimit;
29 else if (depth === 0)
32 return StringifyProxy(x, depth);
51 {}.hasOwnProperty.call(x, i) ? Stringify(x[i], depth - 1) : "");
68 props.push(name + ": " + Stringify(desc.value, depth - 1));
85 function StringifyProxy(proxy, depth) {
91 return '[' + proxy_type + ' Proxy ' + Stringify(info_object, depth-1) + ']';

Completed in 565 milliseconds

1234567891011>>