Searched refs:p2x (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/libs/hwui/ |
D | PathTessellator.cpp | 1042 float p2x, float p2y, float c2x, float c2y, in recursiveCubicBezierVertices() argument 1045 float dx = p2x - p1x; 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() 1058 float p2c2x = (p2x + c2x) * 0.5f; in recursiveCubicBezierVertices() 1079 p2x, p2y, p2c2x, p2c2y, in recursiveCubicBezierVertices()
|
D | PathTessellator.h | 140 float p2x, float p2y,
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | vlc_decode.cpp | 371 int p1x = 0, p2x = 0, p3x = 0; in mv_prediction() local 398 p2x = motxdata[indx]; in mv_prediction() 410 p2x = motxdata[indx]; in mv_prediction() 426 *mvx = (MOT)PV_MEDIAN(p1x, p2x, p3x); in mv_prediction() 432 *mvx = (MOT)(p1x + p2x + p3x); in mv_prediction()
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | vlc_encode.cpp | 2540 Int p1x, p2x, p3x; in find_pmvs() local 2689 p2x = p2y = 0; in find_pmvs() 2693 p2x = motdata[yin2*nMBPerRow+xin2][vec2].x; in find_pmvs() 2719 *mvx = (p1x + p2x + p3x); in find_pmvs() 2724 *mvx = ((p1x + p2x + p3x - PV_MAX(p1x, PV_MAX(p2x, p3x)) - PV_MIN(p1x, PV_MIN(p2x, p3x)))); in find_pmvs()
|