HomeSort by relevance Sort by last modified time
    Searched defs:vy (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/skia/src/opts/
SkBitmapProcState_filter_neon.h 27 uint8x8_t vy, vconst16_8, v16_y, vres; local
32 vy = vdup_n_u8(y); // duplicate y into vy
34 v16_y = vsub_u8(vconst16_8, vy); // v16_y = 16-y
42 tmp2 = vmull_u8(vreinterpret_u8_u32(va1), vy); // tmp2 = [a11|a10] * y
62 uint8x8_t vy, vconst16_8, v16_y, vres; local
67 vy = vdup_n_u8(y); // duplicate y into vy
69 v16_y = vsub_u8(vconst16_8, vy); // v16_y = 16-y
77 tmp2 = vmull_u8(vreinterpret_u8_u32(va1), vy); // tmp2 = [a11|a10] *
    [all...]
  /external/skqp/src/opts/
SkBitmapProcState_filter_neon.h 27 uint8x8_t vy, vconst16_8, v16_y, vres; local
32 vy = vdup_n_u8(y); // duplicate y into vy
34 v16_y = vsub_u8(vconst16_8, vy); // v16_y = 16-y
42 tmp2 = vmull_u8(vreinterpret_u8_u32(va1), vy); // tmp2 = [a11|a10] * y
62 uint8x8_t vy, vconst16_8, v16_y, vres; local
67 vy = vdup_n_u8(y); // duplicate y into vy
69 v16_y = vsub_u8(vconst16_8, vy); // v16_y = 16-y
77 tmp2 = vmull_u8(vreinterpret_u8_u32(va1), vy); // tmp2 = [a11|a10] *
    [all...]
  /frameworks/native/libs/input/
VelocityControl.cpp 71 float vx, vy; local
73 if (mVelocityTracker.getVelocity(0, &vx, &vy)) {
74 float speed = hypotf(vx, vy) * scale;
88 "vx=%0.3f, vy=%0.3f, speed=%0.3f, accel=%0.3f",
91 vx, vy, speed, scale / mParameters.scale);
VelocityTracker.cpp 958 float vy = (position.y - oldestPosition.y) * scale; local
    [all...]
  /external/pdfium/core/fpdfapi/render/
cpdf_charposlist.cpp 99 short vy; local
100 pCIDFont->GetVertOrigin(CID, vx, vy);
102 charpos.m_Origin.y -= FontSize * vy / 1000;
  /external/opencv/cv/src/
cvoptflowbm.cpp 340 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;
cvoptflowhs.cpp 324 float *vy = velocityY; local
329 memset( vy, 0, imageWidth * sizeof( float ));
332 vy += velStep;
cvsurf.cpp 372 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;
cvhough.cpp 909 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));
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_textobject.cpp 50 short vy; local
51 pFont->AsCIDFont()->GetVertOrigin(CID, vx, vy);
55 pInfo->m_Origin.y -= fontsize * vy / 1000;
238 short vy; local
239 pCIDFont->GetVertOrigin(CID, vx, vy);
242 char_rect.top -= vy;
243 char_rect.bottom -= vy;
  /external/pdfium/third_party/libopenjpeg20/
mct.c 402 __m128 vy, vu, vv; local
405 vy = _mm_load_ps(c0);
408 vr = _mm_add_ps(vy, _mm_mul_ps(vv, vrv));
409 vg = _mm_sub_ps(_mm_sub_ps(vy, _mm_mul_ps(vu, vgu)), _mm_mul_ps(vv, vgv));
410 vb = _mm_add_ps(vy, _mm_mul_ps(vu, vbu));
418 vy = _mm_load_ps(c0);
421 vr = _mm_add_ps(vy, _mm_mul_ps(vv, vrv));
422 vg = _mm_sub_ps(_mm_sub_ps(vy, _mm_mul_ps(vu, vgu)), _mm_mul_ps(vv, vgv));
423 vb = _mm_add_ps(vy, _mm_mul_ps(vu, vbu));
  /external/pdfium/xfa/fxfa/parser/
cxfa_rectangle.cpp 109 float vy = 1.0f; local
126 vx = 1, vy = 1;
137 vx = -1, vy = 1;
148 vx = -1, vy = -1;
159 vx = 1, vy = -1;
178 CFX_RectF rtRadius(cp1.x, cp1.y, fRadius1 * 2 * vx, fRadius1 * 2 * vy);
181 rtRadius.Offset(-fRadius1 * vx, -fRadius1 * vy);
188 cp.y = cp1.y + fRadius1 * vy;
486 float vy = 1.0f; local
507 vx = 1, vy = 1
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowVelocityTracker.java 113 float vy = (movement.y.get(pointerId) - oldestMovement.y.get(pointerId)) * scale; local
115 accumVy = (accumVy * lastDuration + vy * duration) / (duration + lastDuration);
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 58 float vx, vy; member in struct:android::VelocityTrackerState::Velocity
88 float vx, vy; local
89 mVelocityTracker.getVelocity(id, &vx, &vy);
92 vy = vy * units / 1000;
99 if (vy > maxVelocity) {
100 vy = maxVelocity;
101 } else if (vy < -maxVelocity) {
102 vy = -maxVelocity;
107 velocity.vy = vy
116 float vx, vy; local
190 float vy; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_clip.c 235 float vy = x1 * z2 - z1 * x2; local
238 return (vx*vx + vy*vy + vz*vz) == 0.f;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchPaint.java 535 double vy = Math.sin(direction) * dispersion; local
539 double temp = vy;
540 vy = temp * Math.cos(tilt) - vz * Math.sin(tilt);
545 vx = temp * Math.cos(orientation) - vy * Math.sin(orientation);
546 vy = temp * Math.sin(orientation) + vy * Math.cos(orientation);
554 float py = (float) (vy * pd);
  /external/opencv/cvaux/src/
cvvecfacetracking.cpp 586 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));
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_sample.c 2229 const float vy = dvdy * scaling; local
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_texfilter.c 1667 GLfloat vy = dvdy * scaling; local
1788 GLfloat vy = dvdy * scaling; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PhotoView.java 1093 int vy = (int) (velocityY + 0.5f); local
    [all...]
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 

Completed in 763 milliseconds

1 2 3