Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/
DPathTessellator.h139 static void recursiveCubicBezierVertices(float p1x, float p1y, float c1x, float c1y, float p2x,
DPathTessellator.cpp1001 void PathTessellator::recursiveCubicBezierVertices(float p1x, float p1y, float c1x, float c1y, in recursiveCubicBezierVertices() argument
1006 float dy = p2y - p1y; in recursiveCubicBezierVertices()
1016 float p1c1y = (p1y + c1y) * 0.5f; in recursiveCubicBezierVertices()
1032 recursiveCubicBezierVertices(p1x, p1y, p1c1x, p1c1y, mx, my, p1c1c2x, p1c1c2y, 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
381 p1y = motydata[indx]; in mv_prediction()
389 p1y = 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
2676 p1x = p1y = 0; in find_pmvs()
2682 p1y = motdata[yin1*nMBPerRow+xin1][vec1].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()