Searched refs:depth (Results 1 - 25 of 1692) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2055.js31 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 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/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/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/main/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/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/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Daccess-binary-trees.js16 function bottomUpTree(item,depth){
17 if (depth>0){
19 bottomUpTree(2*item-1, depth-1)
20 ,bottomUpTree(2*item, depth-1)
39 for (var depth=minDepth; depth<=maxDepth; depth+=2){
40 var iterations = 1 << (maxDepth - depth + minDepth);
44 check += bottomUpTree(i,depth).itemCheck();
45 check += bottomUpTree(-i,depth)
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Daccess-binary-trees.js16 function bottomUpTree(item,depth){
17 if (depth>0){
19 bottomUpTree(2*item-1, depth-1)
20 ,bottomUpTree(2*item, depth-1)
39 for (var depth=minDepth; depth<=maxDepth; depth+=2){
40 var iterations = 1 << (maxDepth - depth + minDepth);
44 check += bottomUpTree(i,depth).itemCheck();
45 check += bottomUpTree(-i,depth)
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Daccess-binary-trees.js16 function bottomUpTree(item,depth){
17 if (depth>0){
19 bottomUpTree(2*item-1, depth-1)
20 ,bottomUpTree(2*item, depth-1)
39 for (var depth=minDepth; depth<=maxDepth; depth+=2){
40 var iterations = 1 << (maxDepth - depth + minDepth);
44 check += bottomUpTree(i,depth).itemCheck();
45 check += bottomUpTree(-i,depth)
[all...]
/external/chromium_org/v8/test/webkit/fast/js/
H A Ddeep-recursion-test.js26 function simpleRecursion(depth) {
27 if (depth)
28 simpleRecursion(depth - 1);
68 function tooManyArgsRecursion(depth) {
69 if (depth)
70 tooManyArgsRecursion(depth - 1, 1);
/external/valgrind/main/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/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/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_clear.h41 double depth, unsigned stencil);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_clear.h40 double depth, unsigned stencil);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_clear.h41 double depth, unsigned stencil);
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_clear.h40 double depth, unsigned stencil);
/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/chromium_org/ui/gfx/geometry/
H A Dbox_f.h25 BoxF(float width, float height, float depth) argument
28 depth_(depth < 0 ? 0 : depth) {}
30 BoxF(float x, float y, float z, float width, float height, float depth) argument
34 depth_(depth < 0 ? 0 : depth) {}
36 BoxF(const Point3F& origin, float width, float height, float depth) argument
40 depth_(depth < 0 ? 0 : depth) {}
84 float depth() cons
[all...]
/external/chromium_org/build/
H A Dinverse_depth.py11 depth = argv[0]
12 return os.path.relpath(os.getcwd(), os.path.abspath(depth))
17 print "USAGE: inverse_depth.py depth"
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebScreenInfo.h44 // The screen depth in bits per pixel
45 int depth; member in struct:blink::WebScreenInfo
82 , depth(0)
/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

Completed in 5614 milliseconds

1234567891011>>