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

1 2 3

  /external/chromium_org/ui/events/gesture_detection/
velocity_tracker_state.h 35 float vx, vy; member in struct:ui::VelocityTrackerState::Velocity
velocity_tracker_state.cc 45 float vx, vy; local
46 velocity_tracker_.GetVelocity(id, &vx, &vy);
48 vx = vx * units / 1000.f;
51 if (vx > max_velocity)
52 vx = max_velocity;
53 else if (vx < -max_velocity)
54 vx = -max_velocity;
62 velocity.vx = vx;
68 float vx; local
86 float vx, vy; local
    [all...]
  /external/chromium_org/third_party/skia/src/opts/
SkBitmapProcState_filter_neon.h 30 uint16x4_t vx, vconst16_16, v16_x, tmp; local
46 vx = vdup_n_u16(x); // duplicate x into vx
48 v16_x = vsub_u16(vconst16_16, vx); // v16_x = 16-x
50 tmp = vmul_u16(vget_high_u16(tmp1), vx); // tmp = a01 * x
51 tmp = vmla_u16(tmp, vget_high_u16(tmp2), vx); // tmp += a11 * x
65 uint16x4_t vx, vconst16_16, v16_x, tmp, vscale; local
81 vx = vdup_n_u16(x); // duplicate x into vx
83 v16_x = vsub_u16(vconst16_16, vx); // v16_x = 16-
    [all...]
  /external/skia/src/opts/
SkBitmapProcState_filter_neon.h 30 uint16x4_t vx, vconst16_16, v16_x, tmp; local
46 vx = vdup_n_u16(x); // duplicate x into vx
48 v16_x = vsub_u16(vconst16_16, vx); // v16_x = 16-x
50 tmp = vmul_u16(vget_high_u16(tmp1), vx); // tmp = a01 * x
51 tmp = vmla_u16(tmp, vget_high_u16(tmp2), vx); // tmp += a11 * x
65 uint16x4_t vx, vconst16_16, v16_x, tmp, vscale; local
81 vx = vdup_n_u16(x); // duplicate x into vx
83 v16_x = vsub_u16(vconst16_16, vx); // v16_x = 16-
    [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 902 float vx = (position.x - oldestPosition.x) * scale; local
904 accumVx = (accumVx * lastDuration + vx * duration) / (duration + lastDuration);
    [all...]
  /external/pixman/test/
scaling-helpers-test.c 21 int64_t vx = vx_; local
29 if (vx < 0)
31 if (vx + pixman_fixed_1 < 0)
36 else if (vx + pixman_fixed_1 >= pixman_int_to_fixed (source_image_width))
38 if (vx >= pixman_int_to_fixed (source_image_width))
47 vx += unit_x;
60 pixman_fixed_t vx = prng_rand_n(10000 << 16) - (3000 << 16); local
67 vx,
76 vx,
  /external/chromium_org/content/renderer/input/
input_handler_proxy.cc 400 const float vx = gesture_event.data.flingStart.velocityX; local
402 current_fling_velocity_ = gfx::Vector2dF(vx, vy);
405 WebFloatPoint(vx, vy),
407 disallow_horizontal_fling_scroll_ = !vx;
412 "vx",
413 vx,
420 fling_parameters_.delta = WebFloatPoint(vx, vy);
570 "vx",
  /external/chromium_org/third_party/skia/src/utils/
SkNinePatch.cpp 78 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/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 323 float *vx = velocityX; local
328 memset( vx, 0, imageWidth * sizeof( float ));
331 vx += velStep;
cvsurf.cpp 372 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;
cvhough.cpp 909 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;
    [all...]
  /external/pixman/pixman/
pixman-android.c 80 uint32_t *dst, const uint32_t *src, int32_t w, pixman_fixed_t vx,
88 x1 = pixman_fixed_to_int(vx);
89 vx += unit_x;
91 x2 = pixman_fixed_to_int(vx);
92 vx += unit_x;
98 x1 = pixman_fixed_to_int(vx);
122 int32_t source_image_width, pixman_fixed_t vx, pixman_fixed_t unit_x,
126 if (vx < 0) {
127 tmp = ((int64_t) unit_x - 1 - vx) / unit_x;
138 tmp = ((int64_t) unit_x - 1 - vx + max_vx) / unit_x - *left_pad
186 pixman_fixed_t vx, vy; local
291 pixman_fixed_t vx, vy; local
    [all...]
pixman-bits-image.c 747 pixman_fixed_t vx, vy; local
763 vx = v.vector[0];
783 x = ((vx >> x_phase_shift) << x_phase_shift) + ((1 << x_phase_shift) >> 1);
864 vx += ux;
    [all...]
pixman-fast-path.c 1375 pixman_fixed_t vx,
1383 tmp1 = *(src + pixman_fixed_to_int (vx));
1384 vx += unit_x;
1385 tmp2 = *(src + pixman_fixed_to_int (vx));
1386 vx += unit_x;
1387 tmp3 = *(src + pixman_fixed_to_int (vx));
1388 vx += unit_x;
1389 tmp4 = *(src + pixman_fixed_to_int (vx));
1390 vx += unit_x;
1398 tmp1 = *(src + pixman_fixed_to_int (vx));
1501 pixman_fixed_t vx = v.vector[0]; local
    [all...]
  /external/skia/src/utils/
SkNinePatch.cpp 78 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++;
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 57 float vx, vy; member in struct:android::VelocityTrackerState::Velocity
87 float vx, vy; local
88 mVelocityTracker.getVelocity(id, &vx, &vy);
90 vx = vx * units / 1000;
93 if (vx > maxVelocity) {
94 vx = maxVelocity;
95 } else if (vx < -maxVelocity) {
96 vx = -maxVelocity;
105 velocity.vx = vx
115 float vx, vy; local
181 float vx; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchPaint.java 534 double vx = Math.cos(direction) * dispersion; local
544 temp = vx;
545 vx = temp * Math.cos(orientation) - vy * Math.sin(orientation);
553 float px = (float) (vx * pd);
  /external/libvorbis/lib/
floor1.c 732 int vx=post_Y(fit_valueA,fit_valueB,i); local
734 if(vx>=0 && predicted!=vx){
735 output[i]=vx;
  /external/pdfium/core/include/fxcrt/
fx_coordinates.h 218 CFX_VTemplate vx; local
219 vx.Set(1, 0);
220 FX_FLOAT fSlope = ArcCosine(v, vx);
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp 133 short vx, vy; local
134 ((CPDF_CIDFont*)pFont)->GetVertOrigin(CID, vx, vy);
136 pInfo->m_OriginX -= fontsize * vx / 1000;
385 short vx, vy; local
386 pCIDFont->GetVertOrigin(CID, vx, vy);
387 char_rect.left -= vx;
388 char_rect.right -= vx;
452 short vx, vy; local
453 pCIDFont->GetVertOrigin(CID, vx, vy);
454 char_rect.left -= vx;
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_text.cpp 576 short vx, vy; local
577 pCIDFont->GetVertOrigin(CID, vx, vy);
578 charpos.m_OriginX -= FontSize * vx / 1000;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_tex_sample.c 1649 float vx = dvdx * scaling; local
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_sample.c 1649 float vx = dvdx * scaling; local
    [all...]

Completed in 520 milliseconds

1 2 3