Searched defs:vy (Results 1 - 8 of 8) sorted by relevance

/external/skia/gpu/src/
H A DGrTextContext.cpp163 GrFixed vx, GrFixed vy,
175 vy += GrIntToFixed(glyph->fBounds.fTop);
184 int y = vy >> 16;
218 GrFixedToScalar(vy - GrIntToFixed(glyph->fBounds.fTop)));
277 int y = vy >> 16;
289 fVertices[2*fCurrVertex].setXRectFan(vx, vy, vx + width, vy + height,
162 drawPackedGlyph(GrGlyph::PackedID packed, GrFixed vx, GrFixed vy, GrFontScaler* scaler) argument
/external/skia/src/utils/
H A DSkNinePatch.cpp82 const SkScalar vy, const SkScalar ty,
86 verts->set(vx, vy); verts++;
96 verts->set(vx, vy); verts++;
99 verts->set(bounds.fRight, vy); verts++;
218 SkScalar vy = bounds.fTop; local
219 fillRow(verts, texs, vy, 0, bounds, xDivs, numXDivs,
227 vy += computeVertexDelta(y & 1, ty, prev, stretchY);
230 fillRow(verts, texs, vy, ty, bounds, xDivs, numXDivs,
81 fillRow(SkPoint verts[], SkPoint texs[], const SkScalar vy, const SkScalar ty, const SkRect& bounds, const int32_t xDivs[], int numXDivs, const SkScalar stretchX, int width) argument
/external/opencv/cv/src/
H A Dcvoptflowbm.cpp340 int vx = cvRound( velxf[j] ), vy = cvRound( velyf[j] ); local
341 velx[j] = vx; vely[j] = vy;
537 float vx = (float)velx[j]*back, vy = (float)vely[j]*back;
538 velxf[j] = vx; velyf[j] = vy;
H A Dcvoptflowhs.cpp324 float *vy = velocityY; local
329 memset( vy, 0, imageWidth * sizeof( float ));
332 vy += velStep;
H A Dcvsurf.cpp372 float vx, vy, w; local
379 vy = icvCalcHaarPattern( ptr, dy_t, NX )*w;
380 X[nangle] = vx; Y[nangle] = vy;
478 float vy = (PATCH[i+1][j] - PATCH[i][j] + PATCH[i+1][j+1] - PATCH[i][j+1])*dw; local
480 DY[i][j] = vy;
H A Dcvhough.cpp909 float vx, vy; local
914 vy = dy_row[x];
916 if( !edges_row[x] || (vx == 0 && vy == 0) )
919 if( fabs(vx) < fabs(vy) )
921 sx = cvRound(vx*ONE/fabs(vy));
922 sy = vy < 0 ? -ONE : ONE;
927 sy = cvRound(vy*ONE/fabs(vx));
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xv/
H A DXv.c427 int vx, int vy,
447 req->vid_y = vy;
467 int vx, int vy,
486 req->vid_y = vy;
506 int vx, int vy,
525 req->vid_y = vy;
545 int vx, int vy,
564 req->vid_y = vy;
422 XvPutVideo( Display *dpy, XvPortID port, Drawable d, GC gc, int vx, int vy, unsigned int vw, unsigned int vh, int dx, int dy, unsigned int dw, unsigned int dh ) argument
462 XvPutStill( Display *dpy, XvPortID port, Drawable d, GC gc, int vx, int vy, unsigned int vw, unsigned int vh, int dx, int dy, unsigned int dw, unsigned int dh ) argument
501 XvGetVideo( Display *dpy, XvPortID port, Drawable d, GC gc, int vx, int vy, unsigned int vw, unsigned int vh, int dx, int dy, unsigned int dw, unsigned int dh ) argument
540 XvGetStill( Display *dpy, XvPortID port, Drawable d, GC gc, int vx, int vy, unsigned int vw, unsigned int vh, int dx, int dy, unsigned int dw, unsigned int dh ) argument
/external/opencv/cvaux/src/
H A Dcvvecfacetracking.cpp586 double vy = double(pFaceTracker->face[LEYE].ptCenter.y + pFaceTracker->face[REYE].ptCenter.y) / 2.0 - pFaceTracker->face[MOUTH].ptCenter.y; local
588 double n1_n2 = (vx * vx + vy * vy) * (vx_prev * vx_prev + vy_prev * vy_prev);
590 pFaceTracker->dbRotateDelta = asin((vx * vy_prev - vx_prev * vy) / sqrt(n1_n2));

Completed in 293 milliseconds