Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/
DPathTessellator.cpp1042 float p2x, float p2y, float c2x, float c2y, in recursiveCubicBezierVertices() argument
1046 float dy = p2y - p1y; in recursiveCubicBezierVertices()
1047 float d1 = fabs((c1x - p2x) * dy - (c1y - p2y) * dx); in recursiveCubicBezierVertices()
1048 float d2 = fabs((c2x - p2x) * dy - (c2y - p2y) * dx); in recursiveCubicBezierVertices()
1054 outputVertices.push_back(Vertex{p2x, p2y}); in recursiveCubicBezierVertices()
1059 float p2c2y = (p2y + c2y) * 0.5f; in recursiveCubicBezierVertices()
1079 p2x, p2y, p2c2x, p2c2y, in recursiveCubicBezierVertices()
DPathTessellator.h140 float p2x, float p2y,
/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()