/external/ceres-solver/internal/ceres/ |
evaluator_test.cc | 573 double x2 = parameters[0][1]; local 575 residuals[1] = x2 * x2; 583 jacobian[3] = 2.0 * x2;
|
trust_region_minimizer_test.cc | 92 const double x2 = state[1]; local 98 << "x2=" << x2 << ", " 102 const double f1 = x1 + 10.0 * x2; 104 const double f3 = pow(x2 - 2.0 * x3, 2.0); 144 2.0*(x2 - 2.0*x3)*(1.0 - 2.0*x3), 152 2.0*(x2 - 2.0*x3)*(x2 - 2.0), 173 gradient[column_index++] = f1 * 10.0 + f3 * 2.0 * (x2 - 2.0 * x3); 178 f2 * sqrt(5.0) + f3 * (2.0 * 2.0 * (2.0 * x3 - x2)); [all...] |
/external/clang/test/Analysis/ |
padding_c.c | 150 int x2; member in struct:CorrectOverlyAlignedChar
|
stack-addr-ps.cpp | 38 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 = x1; // expected-note {{binding reference variable 'x2' here} local [all...] |
/external/clang/test/CXX/temp/temp.param/ |
p15-cxx0x.cpp | 10 X<X<X<X<X<int>>>>> *x2; variable 63 template<place...X1, place...X2> 64 struct append_places<places<X1...>, places<X2...>> { 65 typedef places<X1...,X2...> type;
|
/external/clang/test/CodeGen/ |
override-layout.c | 31 // CHECK: Type: struct X2 32 struct PACKED X2 { 37 void use_X2() { struct X2 x2; x2.y = sizeof(struct X2); }; local
|
/external/clang/test/CodeGenCXX/ |
value-init.cpp | 160 struct X2 : X0 { 161 int x2; member in struct:zeroinit::X2 166 struct X3 : X2<int> { 167 X3() : X2<int>() { }
|
/external/clang/test/Layout/ |
ms-vtordisp-local.cpp | 63 int x2[sizeof(HasVtorDisp1)]; local
|
/external/clang/test/Sema/ |
expr-address-of.c | 24 int *x2 = &y; // expected-error {{address of register variable requested}} local 58 register int *x2; local 59 int *_dummy2 = &(*(x2 + 1));
|
exprs.c | 191 int x2 = *(volatile int*)0; // Ok. local
|
flexible-array-init.c | 7 struct one x2 = { 5, 1, 2, 3 }; // expected-warning{{flexible array initialization is a GNU extension}} variable in typeref:struct:one
|
/external/clang/test/SemaCXX/ |
anonymous-union.cpp | 113 protected: float x2; // expected-error{{anonymous union cannot contain a protected data member}} member in union:BadMembers::__anon9432
|
dcl_init_aggr.cpp | 27 int x2[] = { }; // expected-warning{{zero size arrays are an extension}} variable
|
linkage2.cpp | 29 extern int x2; 34 int x2; member in namespace:test3::__anon9560
|
static-cast.cpp | 173 struct X2 { 176 struct X3 : X2 { 183 (void)static_cast<X3_typedef*>(x2); 186 const X2 *x2; member in struct:X4
|
warn-unused-filescoped.cpp | 90 int x2; // expected-warning{{unused}} member in namespace:__anon9652
|
/external/clang/test/SemaTemplate/ |
default-arguments.cpp | 7 X<int> *x2; variable 51 struct X2 { 74 X2<int> x2i; // expected-note{{in instantiation of template class 'X2<int>' requested here}} 75 X2<int>::Inner1<float> x2iif; 77 X2<int>::Inner1<> x2bad; // expected-error{{too few template arguments for class template 'Inner1'}} 79 X2<int>::NonType1<'a'> x2_nontype1; 80 X2<int>::NonType1<> x2_nontype1_bad; // expected-error{{too few template arguments for class template 'NonType1'}} 83 X2<int>::Inner3<float>::VeryInner<> vi; 84 X2<char>::Inner3<int>::NonType2<> x2_deep_nontype; // expected-note{{in instantiation of template cla (…) [all...] |
/external/freetype/src/cff/ |
cffdrivr.c | 669 FT_Int x2 = darken_params[2]; local 677 if ( x1 < 0 || x2 < 0 || x3 < 0 || x4 < 0 || 679 x1 > x2 || x2 > x3 || x3 > x4 || 685 driver->darken_params[2] = x2;
|
/external/guava/guava/src/com/google/common/math/ |
BigIntegerMath.java | 101 BigInteger x2 = x.pow(2); local 102 int logX2Floor = x2.bitLength() - 1; 187 BigInteger x2 = x.pow(2); local 189 return (x2.compareTo(halfPowerSquared) <= 0) ? floorLog : floorLog + 1;
|
/external/guava/guava-tests/test/com/google/common/math/ |
BigIntegerMathTest.java | 124 BigInteger x2 = x.pow(2); local 126 assertTrue(ZERO.setBit(2 * result + 1).compareTo(x2) > 0); 128 assertTrue(result == 0 || ZERO.setBit(2 * result - 1).compareTo(x2) <= 0); 135 BigInteger x2 = x.pow(2); local 137 assertTrue(ZERO.setBit(2 * result + 1).compareTo(x2) >= 0); 139 assertTrue(result == 0 || ZERO.setBit(2 * result - 1).compareTo(x2) < 0); 215 BigInteger x2 = x.pow(2); local 217 assertTrue(TEN.pow(2 * result + 1).compareTo(x2) > 0); 219 assertTrue(result == 0 || TEN.pow(2 * result - 1).compareTo(x2) <= 0); 227 BigInteger x2 = x.pow(2) local [all...] |
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/autofit/ |
afloader.c | 564 FT_Int x1, y1, x2, y2, x3, y3, x4, y4; local 581 x2 = module->darken_params[2]; 614 else if ( scaled_stem < af_intToFixed( x2 ) ) 616 FT_Int xdelta = x2 - x1; 633 FT_Int xdelta = x3 - x2; 636 FT_DivFix( af_intToFixed( x2 ), ppem );
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cff/ |
cffdrivr.c | 674 FT_Int x2 = darken_params[2]; local 682 if ( x1 < 0 || x2 < 0 || x3 < 0 || x4 < 0 || 684 x1 > x2 || x2 > x3 || x3 > x4 || 690 driver->darken_params[2] = x2;
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/values/ |
WeightMeshSpawnShapeValue.java | 54 x2 = vertices[p2Offset], y2 = vertices[p2Offset+1], z2 = vertices[p2Offset+2], local 56 float area = Math.abs((x1*(y2 - y3) + x2*(y3 - y1) + x3*(y1-y2))/2f); 57 distribution.add(new Triangle(x1, y1, z1, x2, y2, z2, x3, y3, z3), area); 67 x2 = vertices[p2Offset], y2 = vertices[p2Offset+1], z2 = vertices[p2Offset+2], local 69 float area = Math.abs((x1*(y2 - y3) + x2*(y3 - y1) + x3*(y1-y2))/2f); 70 distribution.add(new Triangle(x1, y1, z1, x2, y2, z2, x3, y3, z3), area); 82 vector.set( t.x1 + a*(t.x2 - t.x1) + b*(t.x3 - t.x1),
|
/external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/ |
BatchTiledMapRenderer.java | 32 import static com.badlogic.gdx.graphics.g2d.Batch.X2; 199 final float x2 = x1 + region.getRegionWidth() * unitScale; local 202 imageBounds.set(x1, y1, x2 - x1, y2 - y1); 216 vertices[X2] = x1; 222 vertices[X3] = x2; 228 vertices[X4] = x2;
|
HexagonalTiledMapRenderer.java | 183 float x2 = x1 + region.getRegionWidth() * unitScale; local 197 vertices[X2] = x1; 203 vertices[X3] = x2; 209 vertices[X4] = x2;
|