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

1234567891011>>

/external/clang/test/Index/
H A Dcxx-operator-overload.cpp9 Cls x1, x2, x3; local
10 Cls x4 = x1 + x2 + x3;
/external/libcxx/test/std/localization/locale.categories/category.collate/locale.collate/locale.collate.members/
H A Dhash.pass.cpp27 std::string x2("12345");
30 != f.hash(x2.data(), x2.data() + x2.size()));
34 std::wstring x2(L"12345");
37 != f.hash(x2.data(), x2.data() + x2.size()));
/external/libcxx/test/std/localization/locale.categories/category.collate/locale.collate.byname/
H A Dhash.pass.cpp29 std::string x2("12345");
32 != f.hash(x2.data(), x2.data() + x2.size()));
36 std::wstring x2(L"12345");
39 != f.hash(x2.data(), x2.data() + x2.size()));
/external/ceres-solver/examples/
H A Drandom.h50 double x1, x2, w; local
53 x2 = 2.0 * RandDouble() - 1.0;
54 w = x1 * x1 + x2 * x2;
H A Dpowell.cc35 // f1 = x1 + 10*x2;
37 // f3 = (x2 - 2*x3)^2
40 // The starting values are x1 = 3, x2 = -1, x3 = 0, x4 = 1.
41 // The minimum is 0 at (x1, x2, x3, x4) = 0.
60 const T* const x2,
62 // f1 = x1 + 10 * x2;
63 residual[0] = x1[0] + T(10.0) * x2[0];
79 template <typename T> bool operator()(const T* const x2, argument
82 // f3 = (x2 - 2 x3)^2
83 residual[0] = (x2[
59 operator ()(const T* const x1, const T* const x2, T* residual) const argument
106 double x2 = -1.0; local
[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/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::__anon529
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/libvncserver/libvncserver/
H A Ddraw.c3 void rfbFillRect(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2,rfbPixel col) argument
12 for(i=x1;i<x2;i++)
14 rfbMarkRectAsModified(s,x1,y1,x2,y2);
31 void rfbDrawLine(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2,rfbPixel col) argument
40 #define SWAPPOINTS { i=x1; x1=x2; x2=i; i=y1; y1=y2; y2=i; }
41 if(abs(x1-x2)<abs(y1-y2)) {
45 SETPIXEL(x1+(i-y1)*(x2-x1)/(y2-y1),i);
47 if(x2<x1) { i=x1; x1=x2; x
[all...]
/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/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
/external/clang/test/Frontend/
H A Dbackend-diagnostic.c27 void inlineAsmError(int x0, int x1, int x2, int x3, int x4, argument
29 __asm__("hello world": : "r" (x0),"r" (x1),"r" (x2),"r" (x3), // expected-error + {{inline assembly requires more registers than available}}
/external/fio/os/windows/posix/include/
H A Dsyslog.h7 #define LOG_ERROR 0x2
11 #define LOG_NOWAIT 0x2
/external/libmpeg2/common/armv8/
H A Dimpeg2_mem_func.s106 st1 {v0.8b}, [x0], x2 ////Store the row 1
107 st1 {v0.8b}, [x0], x2 ////Store the row 2
108 st1 {v0.8b}, [x0], x2 ////Store the row 3
109 st1 {v0.8b}, [x0], x2 ////Store the row 4
110 st1 {v0.8b}, [x0], x2 ////Store the row 5
111 st1 {v0.8b}, [x0], x2 ////Store the row 6
112 st1 {v0.8b}, [x0], x2 ////Store the row 7
113 st1 {v0.8b}, [x0], x2 ////Store the row 8
131 //// x2 - pointer to v
/external/llvm/test/MC/AArch64/
H A Delf-reloc-pcreladdressing.s4 adr x2, some_label
/external/eigen/test/eigen2/
H A Deigen2_smallvectors.cpp18 x2 = ei_random<Scalar>(), local
21 V2 v2(x1, x2);
22 V3 v3(x1, x2, x3);
23 V4 v4(x1, x2, x3, x4);
27 VERIFY_IS_APPROX(x2, v2.y());
28 VERIFY_IS_APPROX(x2, v3.y());
29 VERIFY_IS_APPROX(x2, v4.y());
/external/v8/test/mjsunit/
H A Dtop-level-assignments.js62 var x2 = new Object(); class
65 x2.a = 7;
66 x2.b = function() { return 42; };
69 x2.c = 88;
70 x2.d = "A Man Called Horse";
77 assertEquals(7, x2.a);
78 assertEquals(42, x2.b());
79 assertEquals(88, x2.c);
80 assertEquals("A Man Called Horse", x2.d);

Completed in 1953 milliseconds

1234567891011>>