HomeSort by relevance Sort by last modified time
    Searched defs:x2 (Results 26 - 50 of 534) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/valgrind/main/massif/tests/
long-time.c 10 int i, *x1, *x2, *x3, *x4; local
13 x2 = malloc(1100 * 1000);
16 free(x2);
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
median5.cpp 120 int16 x1, x2, x3, x4, x5; local
124 x2 = x[-1];
131 if (x2 < x1)
134 x1 = x2;
135 x2 = tmp;
153 if (x3 < x2)
155 tmp = x2;
156 x2 = x3;
159 if (x4 < x2)
161 tmp = x2;
    [all...]
  /external/ceres-solver/internal/ceres/
random.h 57 double x1, x2, w; local
60 x2 = 2.0 * RandDouble() - 1.0;
61 w = x1 * x1 + x2 * x2;
numeric_diff_test_utils.cc 46 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,
107 double x2[5]; member in struct:ceres::internal::__anon4025
131 double *x2 = &(kTests[k].x2[0]); local
    [all...]
partitioned_matrix_view_test.cc 87 Vector x2(m.num_cols());
88 x2.setZero();
91 x1(i) = x2(i) = RandDouble();
98 A_->RightMultiply(x2.data(), y2.data());
112 Vector x2 = Vector::Zero(m.num_cols()); local
116 x2(i + m.num_cols_e()) = x1(i);
123 A_->RightMultiply(x2.data(), y2.data());
  /external/clang/test/CXX/special/class.copy/
p33-0x.cpp 11 X x2; local
15 return x2;
21 X x2; local
23 throw x2;
36 X x2; local
38 throw x2; // okay
48 T x2; local
50 throw x2; // okay
  /external/clang/test/CXX/temp/temp.arg/temp.arg.type/
p2-cxx0x.cpp 16 X<A*> x2; local
  /external/clang/test/CXX/temp/temp.names/
p3-0x.cpp 5 X<(1>2)> x2; // OK variable
  /external/clang/test/SemaCXX/
dependent-types.cpp 7 T* x2; local
  /external/eigen/test/eigen2/
eigen2_smallvectors.cpp 18 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/valgrind/main/memcheck/tests/
badrw.c 8 short *x2; local
15 x2 = x-4;
22 y2 = *x2;
23 *x2 = y2;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_Clip8_s.s 36 x2 RN 5 label
50 LDMIA pSrc!,{x2, x3}
60 USAT16 x2, #8, x2 ;// clip two samples to [0,255]
62 STRB x2, [pDst,#4]
63 MOV x2, x2, LSR #16
64 STRB x2, [pDst,#5]
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh2.cpp 21 void x2 () function
30 x2 ();
  /ndk/tests/device/test-stlport_static-exception/jni/
eh2.cpp 21 void x2 () function
30 x2 ();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
atexit.py 57 def x2(n): function in function:register
58 print "running x2(%r)" % (n,)
63 register(x2, 12)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
atexit.py 57 def x2(n): function in function:register
58 print "running x2(%r)" % (n,)
63 register(x2, 12)
  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalScaleOperationsTest.java 84 BigDecimal x2 = x1.setScale(75); local
86 assertEquals(0, x1.compareTo(x2));
87 assertEquals(0, x2.compareTo(x1));
91 assertEquals(0, x1.compareTo(x2));
92 assertEquals(0, x2.compareTo(x1));
94 x2.precision();
96 assertEquals(0, x1.compareTo(x2));
97 assertEquals(0, x2.compareTo(x1));
  /external/chromium_org/v8/test/mjsunit/
top-level-assignments.js 62 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);
  /external/v8/test/mjsunit/
top-level-assignments.js 62 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);
  /external/ceres-solver/examples/
powell.cc 35 // 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,
82 // f3 = (x2 - 2 x3)^2
83 residual[0] = (x2[0] - T(2.0) * x4[0]) * (x2[0] - T(2.0) * x4[0])
106 double x2 = -1.0; local
    [all...]
  /external/chromium_org/net/spdy/
spdy_buffer_unittest.cc 73 size_t x2 = 0; local
77 base::Bind(&IncrementBy, &x2, SpdyBuffer::CONSUME));
84 EXPECT_EQ(5u, x2);
89 EXPECT_EQ(kDataSize, x2);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegCurvetoCubicSmooth.h 30 SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
34 , m_x2(x2)
53 float x2() const { return m_x2; } function in class:WebCore::SVGPathSegCurvetoCubicSmooth
54 void setX2(float x2)
56 m_x2 = x2;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
bezier.h 35 float x2, y2; member in struct:bezier
52 float x2, float y2,
  /external/chromium_org/third_party/skia/src/pathops/
SkDQuadImplicit.h 19 double x2() const { return fP[kXx_Coeff]; } function in class:SkDQuadImplicit
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_float_animation_curve_unittest.cc 203 double x2 = 0.8; local
205 curve->add(WebFloatKeyframe(0, 0), x1, y1, x2, y2);
210 cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2));

Completed in 3778 milliseconds

12 3 4 5 6 7 8 91011>>