HomeSort by relevance Sort by last modified time
    Searched defs:y2 (Results 1 - 25 of 199) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/CXX/temp/temp.param/
p15.cpp 12 Y<1 >> 2> *y2; // expected-warning{{use of right-shift operator ('>>') in template argument will require parentheses in C++11}} variable
  /external/clang/test/PCH/Inputs/
chain-external-defs2.h 5 int y2; variable
  /external/clang/test/PCH/
chain-external-defs.c 27 // YB: @y2 = global i32 18
28 // YB-NOT: @y2 = global i32 18
29 int y2 = 18; variable
  /external/skia/legacy/src/animator/
SkDrawLine.h 24 SkScalar y2; member in class:SkLine
  /external/skia/src/animator/
SkDrawLine.h 24 SkScalar y2; member in class:SkLine
  /external/clang/test/CXX/stmt.stmt/stmt.dcl/
p3-0x.cpp 39 Y y2; // expected-note{{jump bypasses variable with a non-trivial destructor}} local
  /external/valgrind/main/memcheck/tests/
badrw.c 11 short y2; local
22 y2 = *x2;
23 *x2 = y2;
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_hypot.c 33 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
35 * y1= y with lower 32 bits chopped, y2 = y-y1.
57 double a,b,t1,t2,y1,y2,w; local
114 y2 = b - y1;
118 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
e_hypotf.c 25 float a,b,t1,t2,y1,y2,w; local
74 y2 = b - y1;
77 w = __ieee754_sqrtf(t1*y1-(w*(-w)-(t1*y2+t2*b)));
e_hypotl.c 51 long double a=x,b=y,t1,t2,y1,y2,w; local
111 y2 = b - y1;
115 w = sqrtl(t1*y1-(w*(-w)-(t1*y2+t2*b)));
e_log10.c 41 double f,hfsq,hi,lo,r,val_hi,val_lo,w,y,y2; local
73 y2 = y*log10_2hi;
82 w = y2 + val_hi;
83 val_lo += (y2 - w) + val_hi;
  /external/ceres-solver/internal/ceres/
partitioned_matrix_view_test.cc 97 Vector y2 = Vector::Zero(m.num_rows()); local
98 A_->RightMultiply(x2.data(), y2.data());
101 EXPECT_NEAR(y1(i), y2(i), kEpsilon);
122 Vector y2 = Vector::Zero(m.num_rows()); local
123 A_->RightMultiply(x2.data(), y2.data());
126 EXPECT_NEAR(y1(i), y2(i), kEpsilon);
143 Vector y2 = Vector::Zero(m.num_cols_f()); local
147 m.LeftMultiplyF(x.data(), y2.data());
151 (i < m.num_cols_e()) ? y1(i) : y2(i - m.num_cols_e()),
implicit_schur_complement.cc 115 // y2 = E' y1
119 // y3 = -(E'E)^-1 y2
181 // y2 = b - y1
184 // y3 = E' y2
211 // y2 = (E'E)^-1 y1
212 Vector y2 = Vector::Zero(A_->num_cols_e()); local
213 block_diagonal_EtE_inverse_->RightMultiply(tmp_e_cols_.data(), y2.data());
215 // y3 = E y2
217 A_->RightMultiplyE(y2.data(), tmp_rows_.data());
  /external/clang/test/SemaCXX/
cxx0x-class.cpp 26 static constexpr float y2 = foo(); // expected-error {{must be initialized by a constant expression}} expected-note {{non-constexpr function 'foo'}} member in struct:rdar8367341::A
warn-literal-conversion.cpp 10 int y2 = (((1.2222F))); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}} local
default-constructor-initializers.cpp 29 struct Y2 : Y1 {
30 Y2(int);
31 Y2();
34 struct Y3 : public Y2 {
39 Y2 y2; member in struct:Y4
  /external/fdlibm/
e_hypot.c 30 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
32 * y1= y with lower 32 bits chopped, y2 = y-y1.
55 double a=x,b=y,t1,t2,y1,y2,w; local
104 y2 = b - y1;
108 w = ieee_sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
  /external/webkit/Source/WebCore/svg/
SVGPathSegCurvetoCubicSmooth.h 31 SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
36 , m_y2(y2)
61 float y2() const { return m_y2; } function in class:WebCore::SVGPathSegCurvetoCubicSmooth
62 void setY2(float y2)
64 m_y2 = y2;
77 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
79 return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, role, x, y, x2, y2));
83 SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
84 : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2)
94 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
    [all...]
LinearGradientAttributes.h 43 SVGLength y2() const { return m_y2; } function in struct:WebCore::LinearGradientAttributes
SVGPathSegCurvetoCubic.h 31 SVGPathSegCurvetoCubic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
38 , m_y2(y2)
77 float y2() const { return m_y2; } function in class:WebCore::SVGPathSegCurvetoCubic
78 void setY2(float y2)
80 m_y2 = y2;
95 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
97 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, role, x, y, x1, y1, x2, y2));
101 SVGPathSegCurvetoCubicAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
102 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
112 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
    [all...]
  /frameworks/av/services/audioflinger/
AudioResamplerCubic.h 43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon19631
55 p->y1 = p->y2;
56 p->y2 = p->y3;
58 p->a = (3 * (p->y1 - p->y2) - p->y0 + p->y3) >> 1;
59 p->b = (p->y2 << 1) + p->y0 - (((5 * p->y1 + p->y3)) >> 1);
60 p->c = (p->y2 - p->y0) >> 1;
  /hardware/samsung_slsi/exynos5/include/
ExynosRect.h 123 int y2; //!< Bottom (The y-coordinate value of lower-right corner) member in struct:ExynosRect2
132 y2 = _y2_;
141 y2 = other->y2;
150 y2 = other.y2;
160 && y2 == other.y2);
  /external/clang/test/CXX/over/over.over/
p1.cpp 86 template<int (&)(int)> struct Y2 { };
93 Y2<f0> y2; variable
  /external/qemu/android/skin/
rect.h 61 int x2, y2; member in struct:__anon13088
64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
  /external/webkit/Source/WebCore/css/
CSSTimingFunctionValue.h 69 static PassRefPtr<CSSCubicBezierTimingFunctionValue> create(double x1, double y1, double x2, double y2)
71 return adoptRef(new CSSCubicBezierTimingFunctionValue(x1, y1, x2, y2));
77 double y2() const { return m_y2; } function in class:WebCore::CSSCubicBezierTimingFunctionValue
80 CSSCubicBezierTimingFunctionValue(double x1, double y1, double x2, double y2)
84 , m_y2(y2)

Completed in 756 milliseconds

1 2 3 4 5 6 7 8