Searched refs:y2 (Results 1 - 25 of 107) sorted by relevance

12345

/external/webkit/WebCore/svg/
H A DSVGPathSegCurvetoCubicSmooth.cpp27 SVGPathSegCurvetoCubicSmoothAbs::SVGPathSegCurvetoCubicSmoothAbs(float x, float y, float x2, float y2) argument
28 : SVGPathSegCurvetoCubicSmooth(x, y, x2, y2)
32 SVGPathSegCurvetoCubicSmoothRel::SVGPathSegCurvetoCubicSmoothRel(float x, float y, float x2, float y2) argument
33 : SVGPathSegCurvetoCubicSmooth(x, y, x2, y2)
H A DSVGPathSegCurvetoCubic.cpp28 SVGPathSegCurvetoCubicAbs::SVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2) argument
29 : SVGPathSegCurvetoCubic(x, y, x1, y1, x2, y2)
33 SVGPathSegCurvetoCubicRel::SVGPathSegCurvetoCubicRel(float x, float y, float x1, float y1, float x2, float y2) argument
34 : SVGPathSegCurvetoCubic(x, y, x1, y1, x2, y2)
H A DSVGPathSegCurvetoCubicSmooth.h32 SVGPathSegCurvetoCubicSmooth(float x, float y, float x2, float y2) argument
33 : m_x(x), m_y(y), m_x2(x2), m_y2(y2) { }
46 void setY2(float y2) { m_y2 = y2; } argument
47 float y2() const { return m_y2; } function in class:WebCore::SVGPathSegCurvetoCubicSmooth
58 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(float x, float y, float x2, float y2) { return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(x, y, x2, y2)); } argument
64 SVGPathSegCurvetoCubicSmoothAbs(float x, float y, float x2, float y2);
69 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(float x, float y, float x2, float y2) { return adoptRef(new SVGPathSegCurvetoCubicSmoothRel(x, y, x2, y2)); } argument
[all...]
H A DSVGPathSegCurvetoCubic.h32 SVGPathSegCurvetoCubic(float x, float y, float x1, float y1, float x2, float y2) : SVGPathSeg() , m_x(x) , m_y(y) , m_x1(x1) , m_y1(y1) , m_x2(x2) , m_y2(y2) {} argument
51 void setY2(float y2) { m_y2 = y2; } argument
52 float y2() const { return m_y2; } function in class:WebCore::SVGPathSegCurvetoCubic
65 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(float x, float y, float x1, float y1, float x2, float y2) argument
67 return adoptRef(new SVGPathSegCurvetoCubicAbs(x, y, x1, y1, x2, y2));
74 SVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2);
79 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(float x, float y, float x1, float y1, float x2, float y2) argument
81 return adoptRef(new SVGPathSegCurvetoCubicRel(x, y, x1, y1, x2, y2));
[all...]
H A DSVGPathSegCurvetoCubicSmoothAbs.idl36 attribute float y2
H A DSVGPathSegCurvetoCubicSmoothRel.idl36 attribute float y2
H A DSVGPathSegCurvetoCubicAbs.idl40 attribute float y2
H A DSVGPathSegCurvetoCubicRel.idl40 attribute float y2
H A DSVGLineElement.idl37 readonly attribute SVGAnimatedLength y2;
H A DSVGLinearGradientElement.idl32 readonly attribute SVGAnimatedLength y2;
/external/skia/src/animator/
H A DSkDrawLine.cpp29 SK_MEMBER(y2, Float)
36 SkLine::SkLine() : x1(0), x2(0), y1(0), y2(0) {
41 maker.fCanvas->drawLine(x1, y1, x2, y2, *maker.fPaint);
H A DSkDrawLine.h32 SkScalar y2; member in class:SkLine
/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/src/
H A Dg_code.h104 Word16 y2[], /* i : filtered innovation vector */
H A Dspstproc.h120 Word16 y2[], /* i : Filtered fixed codebook excitation */
H A Dg_code.cpp103 y2[] = filtered innovation vector
144 Word16 y2[] // in : filtered innovation vector
160 scal_y2[i] = shr (y2[i], 1);
231 Word16 y2[], /* i : filtered innovation vector */
240 Word16 *p_y2 = y2;
282 p_y2 = y2;
229 G_code( Word16 xn2[], Word16 y2[], Flag *pOverflow ) argument
/external/webkit/WebCore/css/
H A DCSSTimingFunctionValue.h36 static PassRefPtr<CSSTimingFunctionValue> create(double x1, double y1, double x2, double y2) argument
38 return adoptRef(new CSSTimingFunctionValue(x1, y1, x2, y2));
46 double y2() const { return m_y2; } function in class:WebCore::CSSTimingFunctionValue
49 CSSTimingFunctionValue(double x1, double y1, double x2, double y2) argument
53 , m_y2(y2)
/external/skia/src/svg/
H A DSkSVGLine.cpp25 SVG_ATTRIBUTE(y2)
36 SVG_ADD_ATTRIBUTE(y2);
/external/freetype/src/base/
H A Dftbbox.c93 /* 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
103 BBox_Conic_Check( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos* min, FT_Pos* max ) argument
289 test_cubic_extrema( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos y4, FT_Fixed u, FT_Pos* min, FT_Pos* max ) argument
333 BBox_Cubic_Check( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos y4, FT_Pos* min, FT_Pos* max ) argument
[all...]
/external/webkit/WebCore/platform/animation/
H A DTimingFunction.h42 TimingFunction(ETimingFunctionType timingFunction, double x1 = 0.0, double y1 = 0.0, double x2 = 1.0, double y2 = 1.0)
47 , m_y2(y2)
59 double y2() const { return m_y2; } function in struct:WebCore::TimingFunction
/external/opencore/codecs_v2/video/m4v_h263/dec/src/
H A Dconceal.cpp142 uint8 *y1, *y2, *u1, *u2, *v1, *v2; local
157 y2 = prevFrame + lumstart;
162 oscl_memcpy(y1, y2, MB_SIZE);
164 y2 += width_Y;
165 oscl_memcpy(y1, y2, MB_SIZE);
167 y2 += width_Y;
168 oscl_memcpy(y1, y2, MB_SIZE);
170 y2 += width_Y;
171 oscl_memcpy(y1, y2, MB_SIZE);
173 y2
[all...]
H A Dget_pred_adv_b_add.cpp868 uint32 x1, x2, x1m, x2m, y1, y2, y1m, y2m; /* new way */ local
899 y2 = *((uint32*)(prev + width)); /* b7 b6 b5 b4 */
910 y2m = (y2 >> 2) & mask;
912 y2 = y2 ^(y2m << 2);
914 y1 += y2;
916 /* y2m, y2 free */
919 y2 = *((uint32*)(prev + width)); /* b11 b10 b9 b8 */
921 y2m = (y2 >> 2) & mask;
923 y2
[all...]
/external/qemu/android/skin/
H A Drect.c150 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) {
154 if (b.x1 >= a.x1 && b.x2 <= a.x2 && b.y1 >= a.y1 && b.y2 <= a.y2) {
170 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) {
178 r.y2 = (a.y2 < b.y2) ? a.y2
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/gem/
H A DSDL_gemevents.c82 short x2,y2,w2,h2; local
86 x2=y2=w2=h2 = 0;
90 wind_get (GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2);
99 mouse_event,x2,y2,w2,h2,
172 short x2,y2,w2,h2; local
229 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
249 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
296 short x2, y2, w2, h2; local
304 x2 = y2 = 0;
308 wind_get (GEM_handle, WF_WORKXYWH, &x2, &y2,
[all...]
/external/skia/src/core/
H A DSkEdge.cpp178 SkFDot6 x0, y0, x1, y1, x2, y2; local
188 y2 = int(pts[2].fY * scale);
196 y2 = pts[2].fY >> shift;
201 if (y0 > y2)
204 SkTSwap(y0, y2);
207 SkASSERT(y0 <= y1 && y1 <= y2);
210 int bot = SkFDot6Round(y2);
219 SkFDot6 dy = ((y1 << 1) - y0 - y2) >> 2;
242 A = SkFDot6ToFixed(y0 - y1 - y1 + y2);
250 fQLastY = SkFDot6ToFixed(y2);
319 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
[all...]
/external/speex/libspeex/
H A Dltp_arm4.h101 spx_word32_t y0, y1, y2, y3; local
104 y2=*y++;
173 : "+r" (y0), "+r" (y1), "+r" (y2), "+r" (y3),

Completed in 279 milliseconds

12345