/external/v8/test/mjsunit/regress/ |
H A D | regress-2055.js | 31 function test1(depth) { 32 if (--depth < 0) { 35 return [ 0, test1(depth) ]; 40 function test2(depth) { 41 if (--depth < 0) { 44 var o = [ 0, test2(depth) ]; 45 return (depth == 0) ? 0.5 : o;
|
H A D | regress-353551.js | 28 var depth = 0; variable 32 depth++; 33 if (depth > 3000) return;
|
/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/compiler-rt/test/asan/TestCases/ |
H A D | deep_call_stack.cc | 11 void RecursiveFunc(int depth, int *ptr) { argument 12 if ((depth % 1000) == 0) 13 printf("[%05d] ptr: %p\n", depth, ptr); 14 if (depth == 0) 17 RecursiveFunc(depth - 1, &local);
|
H A D | heavy_uar_test.cc | 28 void RecursiveFunctionWithStackFrame(int depth) { argument 29 if (depth <= 0) return; 31 x[0] = depth; 33 RecursiveFunctionWithStackFrame<kFrameSize>(depth - 1); 38 int depth = argc >= 3 ? atoi(argv[2]) : 500; local 40 RecursiveFunctionWithStackFrame<10>(depth); 41 RecursiveFunctionWithStackFrame<100>(depth); 42 RecursiveFunctionWithStackFrame<500>(depth); 43 RecursiveFunctionWithStackFrame<1024>(depth); 44 RecursiveFunctionWithStackFrame<2000>(depth); [all...] |
H A D | uar_and_exceptions.cc | 24 void Func(int depth) { argument 27 if (depth) 28 Func(depth - 1);
|
H A D | deep_stack_uaf.cc | 10 template <int depth> 13 DeepFree<depth - 1>::free(x);
|
/external/lldb/test/lang/c/recurse/ |
H A D | main.c | 5 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/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/valgrind/none/tests/amd64/ |
H A D | bug156404-amd64.stdout.exp | 0 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 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/compiler-rt/test/msan/ |
H A D | stack-origin2.cc | 24 int f(int depth) { argument 25 if (depth) return f(depth - 1);
|
/external/v8/test/webkit/fast/js/ |
H A D | deep-recursion-test.js | 26 function simpleRecursion(depth) { 27 if (depth) 28 simpleRecursion(depth - 1); 68 function tooManyArgsRecursion(depth) { 69 if (depth) 70 tooManyArgsRecursion(depth - 1, 1);
|
/external/valgrind/memcheck/tests/linux/ |
H A D | lsframe2.c | 13 int rec ( int depth ) 17 if (depth == 0) return 0; 19 arr[i] = i * depth; 20 zzz = rec(depth-1);
|
/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/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_clear.h | 41 double depth, unsigned stencil);
|
H A D | lp_clear.c | 51 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/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_clear.h | 40 double depth, unsigned stencil);
|
/external/proguard/src/proguard/shrink/ |
H A D | ShortestUsageMark.java | 40 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 D | depth.h | 2 * \file depth.h 44 _mesa_ClearDepth( GLclampd depth ); 47 _mesa_ClearDepthf( GLclampf depth );
|
/external/llvm/tools/llvm-c-test/ |
H A D | calc.c | 46 int depth = 0; local 59 if (depth < 2) { 64 stack[depth - 2] = LLVMBuildBinOp(builder, op_to_opcode(tok), 65 stack[depth - 1], stack[depth - 2], ""); 66 depth--; 73 if (depth < 1) { 78 off = LLVMBuildGEP(builder, param, &stack[depth - 1], 1, ""); 79 stack[depth - 1] = LLVMBuildLoad(builder, off, ""); 92 if (depth > [all...] |
/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/ltrace/sysdeps/linux-gnu/m68k/ |
H A D | trace.c | 52 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/v8/test/webkit/ |
H A D | cached-call-uninitialized-arguments.js | 57 function callAfterRecursingForDepth(depth, func, arr) { 58 if (depth > 0) { 59 callAfterRecursingForDepth(depth - 1, func, arr);
|
/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);
|