Searched refs:x2 (Results 26 - 50 of 1796) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/common/
H A Dprerender_types.h14 PrerenderRelTypeNext = 0x2,
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/ubench/
H A Dfunction-excess-args.js1 function f(x0, x1, x2, x3, x4)
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShapeInterval.h45 // The initial values of m_x1,x2 don't matter (unless you're looking
50 ShapeInterval(T x1, T x2) argument
52 , m_x2(x2)
54 ASSERT(x2 >= x1);
59 T x2() const { return isUndefined() ? 0 : m_x2; } function in class:blink::ShapeInterval
63 void set(T x1, T x2) argument
65 ASSERT(x2 >= x1);
67 m_x2 = x2;
74 return x2() >= interval.x1() && x1() <= interval.x2();
[all...]
/external/clang/test/CodeGen/
H A D_Bool-conversion.c8 int f0() { return f0_0((void*) 0x2); }
/external/clang/test/SemaCXX/
H A Dself-comparison.cpp13 X x2; member in struct:A
17 bool g() { return x2 == x2; } // no-warning
H A Ddirect-initializer.cpp4 int (x2)(1);
8 int (x2)(1);
30 X x2(1.0, 3, 4.2);
/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/ceres-solver/internal/ceres/
H A Dnumeric_diff_test_utils.cc46 const double* x2,
50 residuals[0] += x1[i] * x2[i];
51 residuals[2] += x2[i] * x2[i];
61 double x2[] = { 9.0, 9.0, 5.0, 5.0, 1.0 }; local
62 double *parameters[] = { &x1[0], &x2[0] };
81 ExpectClose(x2[i], dydx1[5 * 0 + i], tolerance); // y1
83 ExpectClose(2 * x2[i] * residuals[0], dydx1[5 * 1 + i], tolerance); // y2
86 ExpectClose(2 * x2[i], dydx2[5 * 2 + i], tolerance);
91 const double* x2,
45 operator ()(const double* x1, const double* x2, double* residuals) const argument
90 operator ()(const double* x1, const double* x2, double* residuals) const argument
107 double x2[5]; member in struct:ceres::internal::__anon1769
131 double *x2 = &(kTests[k].x2[0]); local
[all...]
H A Drandom.h57 double x1, x2, w; local
60 x2 = 2.0 * RandDouble() - 1.0;
61 w = x1 * x1 + x2 * x2;
H A Dcost_function_to_functor_test.cc127 bool operator()(const T* x1, const T* x2, T* residuals) const { argument
128 residuals[0] = x1[0] * x1[0] + x2[0] * x2[0];
129 residuals[1] = x1[1] * x1[1] + x2[1] * x2[1];
137 bool operator()(const T* x1, const T* x2, const T* x3, T* residuals) const { argument
138 residuals[0] = x1[0] * x1[0] + x2[0] * x2[0] + x3[0] * x3[0];
139 residuals[1] = x1[1] * x1[1] + x2[1] * x2[
147 operator ()(const T* x1, const T* x2, const T* x3, const T* x4, T* residuals) const argument
160 operator ()(const T* x1, const T* x2, const T* x3, const T* x4, const T* x5, T* residuals) const argument
173 operator ()(const T* x1, const T* x2, const T* x3, const T* x4, const T* x5, const T* x6, T* residuals) const argument
186 operator ()(const T* x1, const T* x2, const T* x3, const T* x4, const T* x5, const T* x6, const T* x7, T* residuals) const argument
199 operator ()(const T* x1, const T* x2, const T* x3, const T* x4, const T* x5, const T* x6, const T* x7, const T* x8, T* residuals) const argument
215 operator ()(const T* x1, const T* x2, const T* x3, const T* x4, const T* x5, const T* x6, const T* x7, const T* x8, const T* x9, T* residuals) const argument
231 operator ()(const T* x1, const T* x2, const T* x3, const T* x4, const T* x5, const T* x6, const T* x7, const T* x8, const T* x9, const T* x10, T* residuals) const argument
[all...]
/external/chromium_org/third_party/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);
/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);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathSegCurvetoCubicSmoothAbs.h32 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, float x, float y, float x2, float y2) argument
34 return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, x, y, x2, y2));
38 SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, float x, float y, float x2, float y2) argument
39 : SVGPathSegCurvetoCubicSmooth(element, x, y, x2, y2) { }
H A DSVGPathSegCurvetoCubicSmoothRel.h32 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, float x, float y, float x2, float y2) argument
34 return adoptRef(new SVGPathSegCurvetoCubicSmoothRel(element, x, y, x2, y2));
38 SVGPathSegCurvetoCubicSmoothRel(SVGPathElement* element, float x, float y, float x2, float y2) argument
39 : SVGPathSegCurvetoCubicSmooth(element, x, y, x2, y2) { }
H A DSVGPathSegCurvetoCubicAbs.idl34 attribute float x2;
H A DSVGPathSegCurvetoCubicRel.idl34 attribute float x2;
H A DSVGPathSegCurvetoCubicSmoothAbs.idl32 attribute float x2;
H A DSVGPathSegCurvetoCubicSmoothRel.idl32 attribute float x2;
/external/chromium_org/third_party/openmax_dl/dl/sp/src/test/
H A Dcompare.c48 double x2; local
58 x2 = pow((double) expected[k].Re, 2);
60 real_signal_power += x2;
62 complex_signal_power += x2 + y2;
64 x2 = pow((double) actual[k].Re - expected[k].Re, 2);
67 real_noise_power += x2;
69 complex_noise_power += x2 + y2;
87 double x2; local
97 x2 = pow((double) expected[k].Re, 2);
99 realSignalPower += x2;
123 double x2; local
146 double x2; local
173 double x2; local
209 double x2; local
[all...]
/external/qemu/target-i386/
H A Dkvm-gs-restore.h9 #define KVM_GS_RESTORE_NO 0x2
/external/libhevc/decoder/arm64/
H A Dihevcd_fmt_conv_420sp_to_420sp.s59 //* x2 pu1_dest_y *
118 ST1 {v0.8b},[x2],#8
119 ST1 {v1.8b},[x2],#8
120 ST1 {v2.8b},[x2],#8
121 ST1 {v3.8b},[x2],#8
133 SUB x2,x2,x6
138 ST1 {v0.8b},[x2],#8
139 ST1 {v1.8b},[x2],#8
140 ST1 {v2.8b},[x2],#
[all...]
/external/ceres-solver/include/ceres/
H A Dnumeric_diff_functor.h156 const double* x2,
158 return functor_(x0, x1, x2, residuals);
163 const double* x2,
166 return functor_(x0, x1, x2, x3, residuals);
171 const double* x2,
175 return functor_(x0, x1, x2, x3, x4, residuals);
180 const double* x2,
185 return functor_(x0, x1, x2, x3, x4, x5, residuals);
190 const double* x2,
196 return functor_(x0, x1, x2, x
154 operator ()(const double* x0, const double* x1, const double* x2, double* residuals) const argument
161 operator ()(const double* x0, const double* x1, const double* x2, const double* x3, double* residuals) const argument
169 operator ()(const double* x0, const double* x1, const double* x2, const double* x3, const double* x4, double* residuals) const argument
178 operator ()(const double* x0, const double* x1, const double* x2, const double* x3, const double* x4, const double* x5, double* residuals) const argument
188 operator ()(const double* x0, const double* x1, const double* x2, const double* x3, const double* x4, const double* x5, const double* x6, double* residuals) const argument
199 operator ()(const double* x0, const double* x1, const double* x2, const double* x3, const double* x4, const double* x5, const double* x6, const double* x7, double* residuals) const argument
211 operator ()(const double* x0, const double* x1, const double* x2, const double* x3, const double* x4, const double* x5, const double* x6, const double* x7, const double* x8, double* residuals) const argument
224 operator ()(const double* x0, const double* x1, const double* x2, const double* x3, const double* x4, const double* x5, const double* x6, const double* x7, const double* x8, const double* x9, double* residuals) const argument
251 operator ()(const T* x0, const T* x1, const T* x2, T* residuals) const argument
259 operator ()(const T* x0, const T* x1, const T* x2, const T* x3, T* residuals) const argument
268 operator ()(const T* x0, const T* x1, const T* x2, const T* x3, const T* x4, T* residuals) const argument
278 operator ()(const T* x0, const T* x1, const T* x2, const T* x3, const T* x4, const T* x5, T* residuals) const argument
289 operator ()(const T* x0, const T* x1, const T* x2, const T* x3, const T* x4, const T* x5, const T* x6, T* residuals) const argument
301 operator ()(const T* x0, const T* x1, const T* x2, const T* x3, const T* x4, const T* x5, const T* x6, const T* x7, T* residuals) const argument
314 operator ()(const T* x0, const T* x1, const T* x2, const T* x3, const T* x4, const T* x5, const T* x6, const T* x7, const T* x8, T* residuals) const argument
328 operator ()(const T* x0, const T* x1, const T* x2, const T* x3, const T* x4, const T* x5, const T* x6, const T* x7, const T* x8, const T* x9, T* residuals) const argument
[all...]
/external/clang/test/Analysis/
H A Dstack-addr-ps.cpp38 const int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} local
39 return x2; // expected-warning{{Address of stack memory associated with temporary object of type 'int' returned}} expected-warning {{returning reference to local temporary}}
50 int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} local
51 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}}
56 int *const &x2 = &x1; // expected-note {{binding reference variable 'x2' here}} local
57 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}}
62 const int &x2 local
[all...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp16.cpp28 int &x2 = a; // expected-error{{binding of reference to type 'int' to a value of type 'const int' drops qualifiers}} local
36 int &x2 = a; // expected-error{{binding of reference to type 'int' to a value of type 'const int' drops qualifiers}} local
/external/clang/test/CodeGenCXX/
H A Dglobal-llvm-constant.cpp18 // CHECK: @x2 = constant
19 extern const X x2;
20 const X x2 = { &add }; variable

Completed in 634 milliseconds

1234567891011>>