Searched defs:vx (Results 1 - 10 of 10) sorted by relevance

/external/skia/src/gpu/
H A DGrTextContext.cpp176 GrFixed vx, GrFixed vy,
187 vx += GrIntToFixed(glyph->fBounds.fLeft);
196 int x = vx >> 16;
230 translate.set(GrFixedToScalar(vx - GrIntToFixed(glyph->fBounds.fLeft)),
288 int x = vx >> 16;
301 fVertices[2*fCurrVertex].setXRectFan(vx, vy, vx + width, vy + height,
175 drawPackedGlyph(GrGlyph::PackedID packed, GrFixed vx, GrFixed vy, GrFontScaler* scaler) argument
/external/skia/src/utils/
H A DSkNinePatch.cpp78 SkScalar vx = bounds.fLeft; local
79 verts->set(vx, vy); verts++;
86 vx += computeVertexDelta(x & 1, tx, prev, stretchX);
89 verts->set(vx, vy); verts++;
/external/jmonkeyengine/engine/src/android/com/jme3/input/android/
H A DAndroidInput.java486 public boolean onFling(MotionEvent event, MotionEvent event2, float vx, float vy) { argument
488 touch.set(Type.FLING, event.getX(), this.getHeight() - event.getY(), vx, vy);
/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.cpp323 float *vx = velocityX; local
328 memset( vx, 0, imageWidth * sizeof( float ));
331 vx += velStep;
H A Dcvsurf.cpp372 float vx, vy, w; local
378 vx = icvCalcHaarPattern( ptr, dx_t, NX )*w;
380 X[nangle] = vx; Y[nangle] = vy;
477 float vx = (PATCH[i][j+1] - PATCH[i][j] + PATCH[i+1][j+1] - PATCH[i+1][j])*dw; local
479 DX[i][j] = vx;
H A Dcvhough.cpp909 float vx, vy; local
913 vx = dx_row[x];
916 if( !edges_row[x] || (vx == 0 && vy == 0) )
919 if( fabs(vx) < fabs(vy) )
921 sx = cvRound(vx*ONE/fabs(vy));
926 assert( vx != 0 );
927 sy = cvRound(vy*ONE/fabs(vx));
928 sx = vx < 0 ? -ONE : ONE;
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xv/
H A DXv.c427 int vx, int vy,
446 req->vid_x = vx;
467 int vx, int vy,
485 req->vid_x = vx;
506 int vx, int vy,
524 req->vid_x = vx;
545 int vx, int vy,
563 req->vid_x = vx;
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/libvorbis/lib/
H A Dfloor1.c732 int vx=post_Y(fit_valueA,fit_valueB,i); local
734 if(vx>=0 && predicted!=vx){
735 output[i]=vx;
/external/opencv/cvaux/src/
H A Dcvvecfacetracking.cpp585 double vx = double(pFaceTracker->face[LEYE].ptCenter.x + pFaceTracker->face[REYE].ptCenter.x) / 2.0 - pFaceTracker->face[MOUTH].ptCenter.x; 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 255 milliseconds