/external/clang/test/SemaTemplate/ |
unused-variables.cpp | 7 struct X1 { }; 12 X1 x1; // expected-warning{{unused variable 'x1'}} local 21 template void g<X0, X1>(); // expected-note{{in instantiation of}}
|
/external/eigen/test/eigen2/ |
eigen2_smallvectors.cpp | 17 Scalar x1 = ei_random<Scalar>(), local 21 V2 v2(x1, x2); 22 V3 v3(x1, x2, x3); 23 V4 v4(x1, x2, x3, x4); 24 VERIFY_IS_APPROX(x1, v2.x()); 25 VERIFY_IS_APPROX(x1, v3.x()); 26 VERIFY_IS_APPROX(x1, v4.x());
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_rect.h | 35 int x0, x1; member in struct:u_rect 45 return (!(a->x1 < b->x0 || 46 b->x1 < a->x0 || 60 if (b->x1 > a->x1) b->x1 = a->x1; 74 b->x0 = b->x1 = b->y0 = b->y1 = 0;
|
/external/valgrind/main/memcheck/tests/ |
badrw.c | 9 char *x1; local 16 x1 = x-1; 25 y1 = *x1; 26 *x1 = y1;
|
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/ |
post_pro.h | 107 Word16 x1; member in struct:__anon29633
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
pre_proc.h | 79 Word16 x1; member in struct:__anon29648
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/ |
armVCM4P2_Clip8_s.s | 35 x1 RN 4 label 48 LDMIA pSrc!,{x0, x1} 52 USAT16 x1, #8, x1 ;// clip two samples to [0,255] 56 STRB x1, [pDst,#2] 57 MOV x1, x1, LSR #16 58 STRB x1, [pDst,#3]
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
eh2.cpp | 15 void x1 () function 24 x1 ();
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
eh2.cpp | 15 void x1 () function 24 x1 ();
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
atexit.py | 55 def x1(): function in function:register 56 print "running x1" 62 register(x1)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
atexit.py | 55 def x1(): function in function:register 56 print "running x1" 62 register(x1)
|
/libcore/luni/src/test/java/libcore/java/math/ |
OldBigDecimalScaleOperationsTest.java | 83 BigDecimal x1 = new BigDecimal(1.23400); local 84 BigDecimal x2 = x1.setScale(75); 86 assertEquals(0, x1.compareTo(x2)); 87 assertEquals(0, x2.compareTo(x1)); 89 x1.precision(); 91 assertEquals(0, x1.compareTo(x2)); 92 assertEquals(0, x2.compareTo(x1)); 96 assertEquals(0, x1.compareTo(x2)); 97 assertEquals(0, x2.compareTo(x1));
|
/external/chromium_org/v8/test/mjsunit/ |
top-level-assignments.js | 61 var x1 = new Object(); class 63 x1.a = 7; 64 x1.b = function() { return 42; }; 67 x1.c = 88; 68 x1.d = "A Man Called Horse"; 72 assertEquals(7, x1.a); 73 assertEquals(42, x1.b()); 74 assertEquals(88, x1.c); 75 assertEquals("A Man Called Horse", x1.d);
|
/external/v8/test/mjsunit/ |
top-level-assignments.js | 61 var x1 = new Object(); class 63 x1.a = 7; 64 x1.b = function() { return 42; }; 67 x1.c = 88; 68 x1.d = "A Man Called Horse"; 72 assertEquals(7, x1.a); 73 assertEquals(42, x1.b()); 74 assertEquals(88, x1.c); 75 assertEquals("A Man Called Horse", x1.d);
|
/external/ceres-solver/examples/ |
powell.cc | 35 // f1 = x1 + 10*x2; 38 // f4 = sqrt(10) * (x1 - x4)^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. 59 template <typename T> bool operator()(const T* const x1, 62 // f1 = x1 + 10 * x2; 63 residual[0] = x1[0] + T(10.0) * x2[0]; 89 template <typename T> bool operator()(const T* const x1, 92 // f4 = sqrt(10) (x1 - x4)^2 93 residual[0] = T(sqrt(10.0)) * (x1[0] - x4[0]) * (x1[0] - x4[0]) 105 double x1 = 3.0; local [all...] |
/external/ceres-solver/internal/ceres/ |
numeric_diff_test_utils.cc | 45 bool EasyFunctor::operator()(const double* x1, 50 residuals[0] += x1[i] * x2[i]; 60 double x1[] = { 1.0, 2.0, 3.0, 4.0, 5.0 }; local 62 double *parameters[] = { &x1[0], &x2[0] }; 82 ExpectClose(x1[i], dydx2[5 * 0 + i], tolerance); 84 ExpectClose(2 * x1[i] * residuals[0], dydx2[5 * 1 + i], tolerance); 90 bool TranscendentalFunctor::operator()(const double* x1, 95 x1x2 += x1[i] * x2[i]; 106 double x1[5]; member in struct:ceres::internal::__anon1312 112 { { 0.0, 2.0, 3.0, 0.0, 5.0 }, // Some zeros x1 130 double *x1 = &(kTests[k].x1[0]); local [all...] |
/external/chromium_org/net/spdy/ |
spdy_buffer_unittest.cc | 72 size_t x1 = 0; local 75 base::Bind(&IncrementBy, &x1, SpdyBuffer::CONSUME)); 83 EXPECT_EQ(5u, x1); 88 EXPECT_EQ(kDataSize, x1);
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGPathSegCurvetoQuadratic.h | 30 SVGPathSegCurvetoQuadratic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) 34 , m_x1(x1) 53 float x1() const { return m_x1; } function in class:WebCore::SVGPathSegCurvetoQuadratic 54 void setX1(float x1) 56 m_x1 = x1;
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
bezier.h | 34 float x1, y1; member in struct:bezier 51 float x1, float y1,
|
/external/chromium_org/third_party/opus/src/celt/tests/ |
test_unit_rotation.c | 56 opus_val16 x1[MAX_SIZE]; local 58 x1[i] = x0[i] = rand()%32767-16384; 59 exp_rotation(x1, N, 1, 1, K, SPREAD_NORMAL); 62 err += (x0[i]-(double)x1[i])*(x0[i]-(double)x1[i]); 67 exp_rotation(x1, N, -1, 1, K, SPREAD_NORMAL); 70 err += (x0[i]-(double)x1[i])*(x0[i]-(double)x1[i]);
|
/external/chromium_org/webkit/renderer/compositor_bindings/ |
web_float_animation_curve_unittest.cc | 201 double x1 = 0.3; local 205 curve->add(WebFloatKeyframe(0, 0), x1, y1, x2, y2); 210 cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2));
|
/external/clang/test/CXX/dcl.decl/dcl.init/ |
p6.cpp | 13 const NoUserDefault x1; // expected-error{{default initialization of an object of const type 'const NoUserDefault' requires a user-provided default constructor}} local
|
/external/clang/test/Sema/ |
block-misc.c | 45 int^^ x1; // expected-error {{block pointer to non-function type is invalid}} expected-error {{block pointer to non-function type is invalid}} variable
|
typeof-use-deprecated.c | 17 bar x1; // expected-warning {{'bar' is deprecated}} variable 19 int main() { typeof(x1) y; } // expected-warning {{'foo' is deprecated}}
|
/external/clang/test/SemaCXX/ |
attr-selectany.cpp | 6 __declspec(selectany) int x1 = 1; variable
|