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

12 3 4 5 6 7 8 91011>>

  /external/clang/test/Index/
cxx-operator-overload.cpp 9 Cls x1, x2, x3; local
10 Cls x4 = x1 + x2 + x3;
  /external/libcxx/test/localization/locale.categories/category.collate/locale.collate/locale.collate.members/
hash.pass.cpp 27 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/localization/locale.categories/category.collate/locale.collate.byname/
hash.pass.cpp 29 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()));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.collate/locale.collate/locale.collate.members/
hash.pass.cpp 27 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()));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.collate/locale.collate.byname/
hash.pass.cpp 29 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()));
  /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 ();
  /external/ceres-solver/examples/
random.h 50 double x1, x2, w; local
53 x2 = 2.0 * RandDouble() - 1.0;
54 w = x1 * x1 + x2 * x2;
  /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::__anon6394
131 double *x2 = &(kTests[k].x2[0]); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeInterval.h 45 // The initial values of m_x1,x2 don't matter (unless you're looking
50 ShapeInterval(T x1, T x2)
52 , m_x2(x2)
54 ASSERT(x2 >= x1);
59 T x2() const { return isUndefined() ? 0 : m_x2; } function in class:blink::ShapeInterval
63 void set(T x1, T x2)
65 ASSERT(x2 >= x1);
67 m_x2 = x2;
74 return x2() >= interval.x1() && x1() <= interval.x2();
    [all...]
  /external/clang/test/SemaCXX/
self-comparison.cpp 13 X x2; member in struct:A
17 bool g() { return x2 == x2; } // no-warning
  /external/valgrind/main/massif/tests/
long-time.c 10 int i, *x1, *x2, *x3, *x4; local
13 x2 = malloc(1100 * 1000);
16 free(x2);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegCurvetoCubicSmooth.h 30 SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, float x, float y, float x2, float y2)
34 , m_x2(x2)
53 float x2() const { return m_x2; } function in class:blink::SVGPathSegCurvetoCubicSmooth
54 void setX2(float x2)
56 m_x2 = x2;
SVGPathSegCurvetoCubicAbs.h 32 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2)
34 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, x, y, x1, y1, x2, y2));
38 SVGPathSegCurvetoCubicAbs(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2)
39 : SVGPathSegCurvetoCubic(element, x, y, x1, y1, x2, y2) { }
SVGPathSegCurvetoCubicRel.h 32 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2)
34 return adoptRef(new SVGPathSegCurvetoCubicRel(element, x, y, x1, y1, x2, y2));
38 SVGPathSegCurvetoCubicRel(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2)
39 : SVGPathSegCurvetoCubic(element, x, y, x1, y1, x2, y2) { }
SVGPathSegCurvetoCubicSmoothAbs.h 32 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, float x, float y, float x2, float y2)
34 return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, x, y, x2, y2));
38 SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, float x, float y, float x2, float y2)
39 : SVGPathSegCurvetoCubicSmooth(element, x, y, x2, y2) { }
SVGPathSegCurvetoCubicSmoothRel.h 32 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, float x, float y, float x2, float y2)
34 return adoptRef(new SVGPathSegCurvetoCubicSmoothRel(element, x, y, x2, y2));
38 SVGPathSegCurvetoCubicSmoothRel(SVGPathElement* element, float x, float y, float x2, float y2)
39 : SVGPathSegCurvetoCubicSmooth(element, x, y, x2, y2) { }
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_InterpolateLuma_Copy_unsafe_s.s 55 x2 RN 8 label
79 M_LDR x2, [pSrc], srcStep
82 M_STR x2, [pDst], dstStep
90 M_LDR x2, [pSrc], srcStep
94 MOV x2, x2, LSR #8
95 ORR x2, x2, x3, LSL #24
98 M_STR x2, [pDst], dstStep
100 M_LDR x2, [pSrc], srcSte
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
armVCM4P10_InterpolateLuma_Copy_unsafe_s.s 55 x2 RN 8 label
79 M_LDR x2, [pSrc], srcStep
82 M_STR x2, [pDst], dstStep
90 M_LDR x2, [pSrc], srcStep
94 MOV x2, x2, LSR #8
95 ORR x2, x2, x3, LSL #24
98 M_STR x2, [pDst], dstStep
100 M_LDR x2, [pSrc], srcSte
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkDrawLine.cpp 19 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/skia/src/animator/
SkDrawLine.cpp 19 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/clang/test/CodeGen/
_Bool-conversion.c 8 int f0() { return f0_0((void*) 0x2); }
  /external/qemu/target-i386/
kvm-gs-restore.h 9 #define KVM_GS_RESTORE_NO 0x2
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/test/
compare.c 48 double x2; local
58 x2 = pow((double) expected[k].Re, 2);
60 real_signal_power += x2;
62 complex_signal_power += x2 + y2;
64 x2 = pow((double) actual[k].Re - expected[k].Re, 2);
67 real_noise_power += x2;
69 complex_noise_power += x2 + y2;
87 double x2; local
97 x2 = pow((double) expected[k].Re, 2);
99 realSignalPower += x2;
123 double x2; local
146 double x2; local
173 double x2; local
209 double x2; local
    [all...]

Completed in 3084 milliseconds

12 3 4 5 6 7 8 91011>>