Home
last modified time | relevance | path

Searched refs:p2y (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/libs/hwui/
DShadowTessellator.cpp206 double p2y = polygon[i].y; in isClockwise() local
207 sum += p1x * p2y - p2x * p1y; in isClockwise()
209 p1y = p2y; in isClockwise()
DPathTessellator.h117 float p2x, float p2y,
DPathTessellator.cpp976 float p2x, float p2y, float c2x, float c2y, in recursiveCubicBezierVertices() argument
980 float dy = p2y - p1y; in recursiveCubicBezierVertices()
981 float d1 = fabs((c1x - p2x) * dy - (c1y - p2y) * dx); in recursiveCubicBezierVertices()
982 float d2 = fabs((c2x - p2x) * dy - (c2y - p2y) * dx); in recursiveCubicBezierVertices()
989 pushToVector(outputVertices, p2x, p2y); in recursiveCubicBezierVertices()
994 float p2c2y = (p2y + c2y) * 0.5f; in recursiveCubicBezierVertices()
1014 p2x, p2y, p2c2x, p2c2y, in recursiveCubicBezierVertices()
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dvlc_decode.cpp372 int p1y = 0, p2y = 0, p3y = 0; in mv_prediction() local
399 p2y = motydata[indx]; in mv_prediction()
411 p2y = motydata[indx]; in mv_prediction()
427 *mvy = (MOT)PV_MEDIAN(p1y, p2y, p3y); in mv_prediction()
433 *mvy = (MOT)(p1y + p2y + p3y); in mv_prediction()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dvlc_encode.cpp2541 Int p1y, p2y, p3y; in find_pmvs() local
2689 p2x = p2y = 0; in find_pmvs()
2694 p2y = motdata[yin2*nMBPerRow+xin2][vec2].y; in find_pmvs()
2720 *mvy = (p1y + p2y + p3y); in find_pmvs()
2725 *mvy = ((p1y + p2y + p3y - PV_MAX(p1y, PV_MAX(p2y, p3y)) - PV_MIN(p1y, PV_MIN(p2y, p3y)))); in find_pmvs()