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

1 2 3 4 5 6 7 8 91011>>

  /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/valgrind/main/memcheck/tests/
badrw.c 11 short y2; local
22 y2 = *x2;
23 *x2 = y2;
  /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...]
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...]
SVGPathSegCurvetoCubicSmoothAbs.idl 33 attribute [StrictTypeChecking] float y2;
SVGPathSegCurvetoCubicSmoothRel.idl 33 attribute [StrictTypeChecking] float y2;
SVGLineElement.idl 37 readonly attribute SVGAnimatedLength y2;
SVGLinearGradientElement.idl 32 readonly attribute SVGAnimatedLength y2;
SVGPathSegCurvetoCubicAbs.idl 35 attribute [StrictTypeChecking] float y2;
SVGPathSegCurvetoCubicRel.idl 35 attribute [StrictTypeChecking] float y2;
  /external/skia/legacy/src/animator/
SkDrawLine.cpp 21 SK_MEMBER(y2, Float)
28 SkLine::SkLine() : x1(0), x2(0), y1(0), y2(0) {
33 maker.fCanvas->drawLine(x1, y1, x2, y2, *maker.fPaint);
SkDrawLine.h 24 SkScalar y2; member in class:SkLine
  /external/skia/src/animator/
SkDrawLine.cpp 21 SK_MEMBER(y2, Float)
28 SkLine::SkLine() : x1(0), x2(0), y1(0), y2(0) {
33 maker.fCanvas->drawLine(x1, y1, x2, y2, *maker.fPaint);
SkDrawLine.h 24 SkScalar y2; member in class:SkLine
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_code.h 104 Word16 y2[], /* i : filtered innovation vector */
  /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
  /packages/inputmethods/LatinIME/native/jni/src/
geometry_utils.h 31 static AK_FORCE_INLINE float getAngle(const int x1, const int y1, const int x2, const int y2) {
33 const int dy = y1 - y2;
49 const int y2) {
50 return static_cast<int>(hypotf(static_cast<float>(x1 - x2), static_cast<float>(y1 - y2)));
  /external/skia/src/svg/
SkSVGLine.cpp 17 SVG_ATTRIBUTE(y2)
28 SVG_ADD_ATTRIBUTE(y2);
  /frameworks/av/services/audioflinger/
AudioResamplerCubic.h 43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon19633
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;
  /external/freetype/src/base/
ftbbox.c 93 /* y2 :: The coordinate of the control point. */
104 FT_Pos y2,
109 if ( y1 <= y3 && y2 == y1 ) /* flat arc */
114 if ( y2 >= y1 && y2 <= y3 ) /* ascending arc */
119 if ( y2 >= y3 && y2 <= y1 ) /* descending arc */
121 y2 = y1;
123 y3 = y2;
128 y1 = y3 = y1 - FT_MulDiv( y2 - y1, y2 - y1, y1 - 2*y2 + y3 )
    [all...]
  /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)
  /frameworks/base/libs/hwui/
Patch.cpp 155 float y2 = 0.0f; local
163 y2 = y1 + floorf(segment * stretchY + 0.5f);
165 y2 = y1 + segment * rescaleY;
168 float vOffset = y1 == y2 ? 0.0f : 0.5 - (0.5 * segment / (y2 - y1));
175 y2 += i * EXPLODE_GAP;
177 generateRow(vertex, y1, y2, v1, v2, stretchX, rescaleX, right - left,
180 y2 -= i * EXPLODE_GAP;
184 y1 = y2;
191 y2 = bottom - top
    [all...]
  /external/eigen/Eigen/src/Core/arch/SSE/
MathFunctions.h 81 Packet4f y, y1, y2; local
84 y2 = pmadd(p4f_cephes_log_p6, x, p4f_cephes_log_p7);
87 y2 = pmadd(y2, x, p4f_cephes_log_p8);
89 y = pmadd(y, x3, y2);
96 y2 = pmul(e, p4f_cephes_log_q2);
98 x = padd(x, y2);
262 Packet4f y2 = p4f_sincof_p0; local
263 y2 = pmadd(y2, z, p4f_sincof_p1)
350 Packet4f y2 = p4f_sincof_p0; local
    [all...]
  /external/clang/test/SemaTemplate/
partial-spec-instantiate.cpp 37 int f(Y<int*> y, Y<float*> y2) {
38 return y.m + y2.m;

Completed in 3066 milliseconds

1 2 3 4 5 6 7 8 91011>>