Searched refs:depth (Results 1 - 25 of 1525) 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;
/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/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/lib/asan/lit_tests/TestCases/Linux/
H A Dheavy_uar_test.cc25 void RecuriveFunctionWithStackFrame(int depth) { argument
26 if (depth <= 0) return;
28 x[0] = depth;
30 RecuriveFunctionWithStackFrame<kFrameSize>(depth - 1);
35 int depth = argc >= 3 ? atoi(argv[2]) : 500; local
37 RecuriveFunctionWithStackFrame<10>(depth);
38 RecuriveFunctionWithStackFrame<100>(depth);
39 RecuriveFunctionWithStackFrame<500>(depth);
40 RecuriveFunctionWithStackFrame<1024>(depth);
41 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/chromium_org/third_party/WebKit/public/platform/
H A DWebScreenInfo.h43 // The screen depth in bits per pixel
44 int depth; member in struct:blink::WebScreenInfo
72 , depth(0)
/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/WebKit/Source/web/x11/
H A DWebScreenInfoFactory.cpp51 unsigned int width, height, border, depth; local
53 display, root, &rootRet, &x, &y, &width, &height, &border, &depth);
60 results.depth = depth;
61 results.isMonochrome = depth == 1;
/external/chromium_org/third_party/mesa/src/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->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/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/
H A Dbox_f.h22 BoxF(float width, float height, float depth) argument
25 depth_(depth < 0 ? 0 : depth) {}
27 BoxF(float x, float y, float z, float width, float height, float depth) argument
31 depth_(depth < 0 ? 0 : depth) {}
33 BoxF(const Point3F& origin, float width, float height, float depth) argument
37 depth_(depth < 0 ? 0 : depth) {}
81 float depth() cons
[all...]
/external/chromium_org/mojo/public/bindings/sample/
H A Dsample_service_unittests.cc117 static void PrintSpacer(int depth) { argument
118 for (int i = 0; i < depth; ++i)
122 static void Print(int depth, const char* name, bool value) { argument
123 PrintSpacer(depth);
127 static void Print(int depth, const char* name, int32_t value) { argument
128 PrintSpacer(depth);
132 static void Print(int depth, const char* name, uint8_t value) { argument
133 PrintSpacer(depth);
137 static void Print(int depth, const char* name, mojo::Handle value) { argument
138 PrintSpacer(depth);
142 Print(int depth, const char* name, const mojo::String& str) argument
148 Print(int depth, const char* name, const Bar& bar) argument
162 Print(int depth, const char* name, const mojo::Array<T>& array) argument
176 Print(int depth, const char* name, const Foo& foo) argument
224 int depth = 1; variable
[all...]
/external/chromium_org/net/http/
H A Dhttp_pipelined_host_test_util.cc24 MockPipeline::MockPipeline(int depth, bool usable, bool active) argument
25 : depth_(depth),
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLContextAttributes.idl31 attribute boolean depth;
/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 8145 milliseconds

1234567891011>>