Searched defs:x2 (Results 101 - 125 of 524) sorted by relevance

1234567891011>>

/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.deprecated/
H A Dp1.cpp25 X<int> x2; // expected-warning {{'X' is deprecated}} variable
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp4-1y.cpp24 auto &&x2 = MRef(X{});//expected-note{{in instantiation of}} local
/external/clang/test/Parser/
H A Dexpressions.c66 int x2 = sizeof struct pr16992; // expected-error {{expected parentheses around type name in sizeof expression}} local
/external/clang/test/Sema/
H A Dtentative-decls.c5 static struct a x2; // expected-warning{{tentative definition of variable with internal linkage has incomplete non-array type 'struct a'}} variable in typeref:struct:a
/external/clang/test/SemaCXX/
H A Dcopy-initialization.cpp13 X x2 = 0; local
H A Ddefault-constructor-initializers.cpp16 struct X4 { // expected-error {{must explicitly initialize the member 'x2'}} \
18 X2 x2; // expected-note {{member is declared here}} member in struct:X4
H A Dswitch.cpp32 void x2() { function
H A Dwarn-unused-result.cpp41 X x, *x2; local
43 x2->foo(); // expected-warning {{ignoring return value}}
/external/clang/test/SemaTemplate/
H A Dinstantiate-expr-5.cpp21 A<HasM> x2; // expected-note{{in instantiation of}} member in namespace:PR5880
H A Dms-sizeof-missing-typename.cpp36 x2 = sizeof(typename T::template InnerTemplate<sizeof(/*typename*/ T::InnerType)>), enumerator in enum:nested_sizeof::Foo::__anon19478
/external/compiler-rt/lib/asan/tests/
H A Dasan_mem_test.cc78 static bool AllocateTwoAdjacentArrays(char **x1, char **x2, size_t size) { argument
88 *x2 = reinterpret_cast<char*>(v[j]);
99 if (res && p == *x2) continue;
107 char *x1, *x2; local
108 if (!Ident(AllocateTwoAdjacentArrays)(&x1, &x2, size))
110 // fprintf(stderr, " large oob memset: %p %p %zd\n", x1, x2, size);
111 // Do a memset on x1 with huge out-of-bound access that will end up in x2.
115 delete [] x2;
/external/freetype/src/autofit/
H A Dafwarp.h36 FT_Pos x1, x2; member in struct:AF_WarperRec_
/external/openfst/src/include/fst/
H A Dexpectation-weight.h72 ExpectationWeight(const X1& x1, const X2& x2) argument
73 : PairWeight<X1, X2>(x1, x2) { }
/external/openssl/crypto/rc2/
H A Drc2_cbc.c140 register RC2_INT x0,x1,x2,x3,t; local
147 x2=(RC2_INT)l&0xffff;
156 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff;
158 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff;
160 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff;
161 x2=(t<<3)|(t>>13);
162 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff;
172 x2+=p1[x1&0x3f];
173 x3+=p1[x2
185 register RC2_INT x0,x1,x2,x3,t; local
[all...]
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_clip_liang_barsky.h28 return (x > clip_box.x2) |
34 inline unsigned clip_liang_barsky(T x1, T y1, T x2, T y2, argument
39 FX_FLOAT deltax = (FX_FLOAT)(x2 - x1);
48 xout = (FX_FLOAT)clip_box.x2;
50 xin = (FX_FLOAT)clip_box.x2;
105 *x++ = x2;
H A Dagg_math.h26 FX_FLOAT x2, FX_FLOAT y2,
29 return FXSYS_Mul(x - x2, y2 - y1) - FXSYS_Mul(y - y2, x2 - x1);
31 AGG_INLINE FX_FLOAT calc_distance(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2) argument
33 FX_FLOAT dx = x2 - x1;
38 FX_FLOAT x2, FX_FLOAT y2,
41 FX_FLOAT dx = x2 - x1;
47 return FXSYS_MulDiv(x - x2, dy, d) - FXSYS_MulDiv(y - y2, dx, d);
25 calc_point_location(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2, FX_FLOAT x, FX_FLOAT y) argument
37 calc_line_point_distance(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2, FX_FLOAT x, FX_FLOAT y) argument
/external/qemu/android/skin/
H A Drect.h61 int x2, y2; member in struct:__anon29190
64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
/external/skia/tests/
H A DClipCubicTest.cpp59 float x2, float y2,
64 crv[2].fX = x2; crv[2].fY = y2;
57 SetCurve(float x0, float y0, float x1, float y1, float x2, float y2, float x3, float y3, SkPoint crv[4]) argument
/external/valgrind/main/memcheck/tests/
H A Dmempool.c115 char *x1, *x2, *x3, *x4, *x5; local
122 x2 = allocate(p, 20);
128 *x2 = 'b'; // valid
139 *x2 = 'f'; // valid
/external/aac/libFDK/include/
H A DFDK_trigFcts.h208 * \param x2 second angle value
209 * \param scale exponent of x1 and x2
210 * \param out pointer to 4 FIXP_DBL locations, were the values cos(x1), sin(x1), cos(x2), sin(x2)
213 static inline void inline_fixp_cos_sin (FIXP_DBL x1, FIXP_DBL x2, const int scale, FIXP_DBL *out) argument
222 residual = fixp_sin_cos_residual_inline(x2, scale, &sine, &cosine);
/external/ceres-solver/examples/
H A Dmore_garbow_hillstrom.cc86 const T x2 = x[1]; member in namespace:ceres::examples
87 residual[0] = T(10.0) * (x2 - x1 * x1);
101 const T x2 = x[1]; member in namespace:ceres::examples
102 residual[0] = T(-13.0) + x1 + ((T(5.0) - x2) * x2 - T(2.0)) * x2;
103 residual[1] = T(-29.0) + x1 + ((x2 + T(1.0)) * x2 - T(14.0)) * x2;
116 const T x2 member in namespace:ceres::examples
130 const T x2 = x[1]; member in namespace:ceres::examples
145 const T x2 = x[1]; member in namespace:ceres::examples
160 const T x2 = x[1]; member in namespace:ceres::examples
178 const T x2 = x[1]; member in namespace:ceres::examples
196 const T x2 = x[1]; member in namespace:ceres::examples
223 const T x2 = x[1]; member in namespace:ceres::examples
245 const T x2 = x[1]; member in namespace:ceres::examples
[all...]
/external/ceres-solver/internal/ceres/
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/WebKit/Source/platform/animation/
H A DUnitBezier.h103 double x2; local
109 x2 = sampleCurveX(t2) - x;
110 if (fabs (x2) < epsilon)
115 t2 = t2 - x2 / d2;
124 x2 = sampleCurveX(t2);
125 if (fabs(x2 - x) < epsilon)
127 if (x > x2)
/external/chromium_org/third_party/libsrtp/srtp/tables/
H A Daes_tables.c94 uint32_t x1, x2, x3; local
103 x2 = gf2_8_shift(x1);
104 x3 = x2 ^ x1;
106 tmp.v8[0] = x2;
113 tmp.v8[1] = x2;
120 tmp.v8[2] = x2;
127 tmp.v8[3] = x2;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_state_dynamic.c271 unsigned x2 = i915->scissor.maxx - 1; local
277 sc[2] = (y2 << 16) | (x2 & 0xffff);

Completed in 6160 milliseconds

1234567891011>>