Searched refs:x2 (Results 1 - 25 of 738) sorted by relevance

1234567891011>>

/external/clang/test/ASTMerge/Inputs/
H A Dvar1.h1 double x2; variable
H A Dtypedef1.c4 Typedef2 x2; variable
H A Dtypedef2.c4 Typedef2 x2; variable
H A Dvar2.c3 int x2; variable
/external/clang/test/PCH/
H A Dcmdline-include2.h1 enum { x2 }; enumerator in enum:__anon4447
H A Dcmdline-include.c6 int g = x1 + x2;
H A Dchain-external-defs.c24 // XB: @x2 = global i32 19
25 // XB-NOT: @x2 = global i32 19
26 int x2 = 19; variable
H A Dexternal-defs.c8 // RUN: grep "@x2 = global i32 19" %t | count 1
9 int x2 = 19; variable
H A Dexternal-defs.h5 int x2; variable
/external/compiler-rt/lib/
H A Dpopcountdi2.c22 du_int x2 = (du_int)a; local
23 x2 = x2 - ((x2 >> 1) & 0x5555555555555555uLL);
25 x2 = ((x2 >> 2) & 0x3333333333333333uLL) + (x2 & 0x3333333333333333uLL);
27 x2 = (x2 + (x2 >>
[all...]
/external/clang/test/CXX/class/class.local/
H A Dp1-0x.cpp7 int& x2 = x; // expected-error{{reference to local variable 'x' declared in enclosing function 'f'}} member in struct:C
13 int& x2 = x; // expected-error{{reference to local variable 'x' declared in enclosing lambda expression}} member in struct:C
/external/clang/test/CXX/special/class.copy/
H A Dp33-0x.cpp11 X x2; local
15 return x2;
21 X x2; local
23 throw x2;
36 X x2; local
38 throw x2; // okay
48 T x2; local
50 throw x2; // okay
/external/clang/test/PCH/Inputs/
H A Dchain-external-defs1.h5 int x2; variable
/external/clang/test/Sema/
H A Darray-size.c6 int x2[(unsigned)1073741824]; // expected-error{{array is too large}} local
/external/valgrind/main/memcheck/tests/
H A Dbadrw.c8 short *x2; local
15 x2 = x-4;
22 y2 = *x2;
23 *x2 = y2;
/external/clang/test/Analysis/
H A Dstack-addr-ps.cpp34 const int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} local
35 return x2; // expected-warning{{Address of stack memory associated with temporary object of type 'const int' returned}} expected-warning {{returning reference to local temporary}}
46 int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} local
47 return &x2; // expected-warning{{Address of stack memory associated with local variable 'x1' returned}} expected-warning {{address of stack memory associated with local variable 'x1' returned}}
52 int *const &x2 = &x1; // expected-note {{binding reference variable 'x2' here}} local
53 return x2; // expected-warning {{address of stack memory associated with local variable 'x1' returned}} expected-warning {{Address of stack memory associated with local variable 'x1' returned to caller}}
58 const int &x2 local
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.link/
H A Dp7.cpp7 // CHECK: @x2 = external global %struct.X
15 extern "C" X x2;
25 return x2;
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.string/
H A Dp1.cpp6 char x2[] = "hello"; variable
7 extern char x2[6];
/external/clang/test/Index/
H A Dcxx-operator-overload.cpp9 Cls x1, x2, x3; local
10 Cls x4 = x1 + x2 + x3;
/external/clang/test/CodeGen/
H A D_Bool-conversion.c8 int f0() { return f0_0((void*) 0x2); }
/external/webkit/PerformanceTests/SunSpider/tests/ubench/
H A Dfunction-excess-args.js1 function f(x0, x1, x2, x3, x4)
/external/valgrind/main/massif/tests/
H A Dlong-time.c10 int i, *x1, *x2, *x3, *x4; local
13 x2 = malloc(1100 * 1000);
16 free(x2);
/external/webkit/Source/WebCore/svg/
H A DSVGPathSegCurvetoCubicSmooth.h31 SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
35 , m_x2(x2)
54 float x2() const { return m_x2; } function in class:WebCore::SVGPathSegCurvetoCubicSmooth
55 void setX2(float x2) argument
57 m_x2 = x2;
77 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
79 return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, role, x, y, x2, y2));
83 SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
84 : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2)
94 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, floa argument
100 SVGPathSegCurvetoCubicSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
[all...]
/external/clang/test/SemaCXX/
H A Ddirect-initializer.cpp4 int (x2)(1);
8 int (x2)(1);
30 X x2(1.0, 3, 4.2);
/external/skia/src/animator/
H A DSkDrawLine.cpp19 SK_MEMBER(x2, Float),
28 SkLine::SkLine() : x1(0), x2(0), y1(0), y2(0) {
33 maker.fCanvas->drawLine(x1, y1, x2, y2, *maker.fPaint);

Completed in 1980 milliseconds

1234567891011>>