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

1 2 3 4 5

  /external/chromium_org/ui/events/gesture_detection/
velocity_tracker_state.cc 45 float vx, vy; local
46 velocity_tracker_.GetVelocity(id, &vx, &vy);
49 vy = vy * units / 1000.f;
56 if (vy > max_velocity)
57 vy = max_velocity;
58 else if (vy < -max_velocity)
59 vy = -max_velocity;
63 velocity.vy = vy;
74 float vy; local
86 float vx, vy; local
    [all...]
velocity_tracker_state.h 35 float vx, vy; member in struct:ui::VelocityTrackerState::Velocity
gesture_detector.cc 528 float vy) {
529 if (!swipe_enabled_ || (!vx && !vy))
532 float vy_abs = std::abs(vy);
537 vy_abs = vy = 0;
547 vy = 0;
550 return listener_->OnSwipe(*current_down_event_, up, vx, vy);
  /external/chromium_org/content/public/android/java/src/org/chromium/content_public/browser/
GestureStateListener.java 25 public void onFlingStartGesture(int vx, int vy, int scrollOffsetY, int scrollExtentY) {}
40 public void onUnhandledFlingStartEvent(int vx, int vy) {}
  /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);
91 vy = vy * units / 1000;
98 if (vy > maxVelocity) {
99 vy = maxVelocity;
100 } else if (vy < -maxVelocity) {
101 vy = -maxVelocity;
106 velocity.vy = vy
115 float vx, vy; local
189 float vy; local
    [all...]
  /external/chromium_org/third_party/skia/src/opts/
SkBitmapProcState_filter_neon.h 29 uint8x8_t vy, vconst16_8, v16_y, vres; local
34 vy = vdup_n_u8(y); // duplicate y into vy
36 v16_y = vsub_u8(vconst16_8, vy); // v16_y = 16-y
44 tmp2 = vmull_u8(vreinterpret_u8_u32(va1), vy); // tmp2 = [a11|a10] * y
64 uint8x8_t vy, vconst16_8, v16_y, vres; local
69 vy = vdup_n_u8(y); // duplicate y into vy
71 v16_y = vsub_u8(vconst16_8, vy); // v16_y = 16-y
79 tmp2 = vmull_u8(vreinterpret_u8_u32(va1), vy); // tmp2 = [a11|a10] *
    [all...]
  /external/skia/src/opts/
SkBitmapProcState_filter_neon.h 29 uint8x8_t vy, vconst16_8, v16_y, vres; local
34 vy = vdup_n_u8(y); // duplicate y into vy
36 v16_y = vsub_u8(vconst16_8, vy); // v16_y = 16-y
44 tmp2 = vmull_u8(vreinterpret_u8_u32(va1), vy); // tmp2 = [a11|a10] * y
64 uint8x8_t vy, vconst16_8, v16_y, vres; local
69 vy = vdup_n_u8(y); // duplicate y into vy
71 v16_y = vsub_u8(vconst16_8, vy); // v16_y = 16-y
79 tmp2 = vmull_u8(vreinterpret_u8_u32(va1), vy); // tmp2 = [a11|a10] *
    [all...]
  /hardware/akm/AK8975_FS/akmdfs/
AKFS_APIs.h 48 AKFLOAT* vy,
57 AKFLOAT* vy,
AKFS_APIs.c 148 @param[out] vy Y axis value of magnetic field vector.
156 AKFLOAT* vy,
244 *vy = g_prms.mfv_hvec.u.y;
250 *accuracy, *vx, *vy, *vz);
266 @param[out] vy Y axis value of acceleration vector.
275 AKFLOAT* vy,
329 *vy = g_prms.mfv_avec.u.y;
335 *accuracy, *vx, *vy, *vz);
  /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);
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
access-nbody.js 9 function Body(x,y,z,vx,vy,vz,mass){
14 this.vy = vy;
21 this.vy = -py / SOLAR_MASS;
89 py += b.vy * m;
111 bodyi.vy -= dy * bodyj.mass * mag;
115 bodyj.vy += dy * bodyi.mass * mag;
123 body.y += dt * body.vy;
138 + bodyi.vy * bodyi.vy
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
access-nbody.js 9 function Body(x,y,z,vx,vy,vz,mass){
14 this.vy = vy;
21 this.vy = -py / SOLAR_MASS;
89 py += b.vy * m;
111 bodyi.vy -= dy * bodyj.mass * mag;
115 bodyj.vy += dy * bodyi.mass * mag;
123 body.y += dt * body.vy;
138 + bodyi.vy * bodyi.vy
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
access-nbody.js 9 function Body(x,y,z,vx,vy,vz,mass){
14 this.vy = vy;
21 this.vy = -py / SOLAR_MASS;
89 py += b.vy * m;
111 bodyi.vy -= dy * bodyj.mass * mag;
115 bodyj.vy += dy * bodyi.mass * mag;
123 body.y += dt * body.vy;
138 + bodyi.vy * bodyi.vy
    [all...]
  /external/eigen/blas/
level1_real_impl.h 68 StridedVectorType vy(vector(y,*n,std::abs(*incy)));
71 Reverse<StridedVectorType> rvy(vy);
73 if(*incx<0 && *incy>0) internal::apply_rotation_in_the_plane(rvx, vy, JacobiRotation<Scalar>(c,s));
75 else internal::apply_rotation_in_the_plane(vx, vy, JacobiRotation<Scalar>(c,s));
level1_cplx_impl.h 100 StridedVectorType vy(vector(y,*n,std::abs(*incy)));
103 Reverse<StridedVectorType> rvy(vy);
106 if(*incx<0 && *incy>0) internal::apply_rotation_in_the_plane(rvx, vy, JacobiRotation<Scalar>(c,s));
108 else internal::apply_rotation_in_the_plane(vx, vy, JacobiRotation<Scalar>(c,s));
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
mct.c 162 __m128 vy, vu, vv; local
165 vy = _mm_load_ps(c0);
168 vr = _mm_add_ps(vy, _mm_mul_ps(vv, vrv));
169 vg = _mm_sub_ps(_mm_sub_ps(vy, _mm_mul_ps(vu, vgu)), _mm_mul_ps(vv, vgv));
170 vb = _mm_add_ps(vy, _mm_mul_ps(vu, vbu));
178 vy = _mm_load_ps(c0);
181 vr = _mm_add_ps(vy, _mm_mul_ps(vv, vrv));
182 vg = _mm_sub_ps(_mm_sub_ps(vy, _mm_mul_ps(vu, vgu)), _mm_mul_ps(vv, vgv));
183 vb = _mm_add_ps(vy, _mm_mul_ps(vu, vbu));
  /external/pixman/pixman/
pixman-android.c 186 pixman_fixed_t vx, vy; local
192 vy = v.vector[1];
201 y1 = pixman_fixed_to_int(vy);
202 weight2 = pixman_fixed_to_bilinear_weight(vy);
212 vy += unit_y;
291 pixman_fixed_t vx, vy; local
302 vy = v.vector[1];
309 y = ((int) ((vy) >> 16));
310 vy += unit_y;
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
mat2d.js 212 var vx = v[0], vy = v[1];
214 out[1] = a[1] * vy;
216 out[3] = a[3] * vy;
218 out[5] = a[5] * vy;
  /external/chromium_org/third_party/skia/src/utils/
SkNinePatch.cpp 75 const SkScalar vy, const SkScalar ty,
79 verts->set(vx, vy); verts++;
89 verts->set(vx, vy); verts++;
92 verts->set(bounds.fRight, vy); verts++;
211 SkScalar vy = bounds.fTop; local
212 fillRow(verts, texs, vy, 0, bounds, xDivs, numXDivs,
220 vy += stretchY;
222 vy += ty;
228 vy += SkScalarMul(ty, -stretchY);
231 fillRow(verts, texs, vy, ty, bounds, xDivs, numXDivs
    [all...]
  /external/skia/src/utils/
SkNinePatch.cpp 75 const SkScalar vy, const SkScalar ty,
79 verts->set(vx, vy); verts++;
89 verts->set(vx, vy); verts++;
92 verts->set(bounds.fRight, vy); verts++;
211 SkScalar vy = bounds.fTop; local
212 fillRow(verts, texs, vy, 0, bounds, xDivs, numXDivs,
220 vy += stretchY;
222 vy += ty;
228 vy += SkScalarMul(ty, -stretchY);
231 fillRow(verts, texs, vy, ty, bounds, xDivs, numXDivs
    [all...]
  /external/chromium_org/ui/events/gestures/
gesture_point.cc 153 float vy = YVelocity(); local
154 return fabs(vy) > GestureConfiguration::rail_break_proportion() * fabs(vx) +
160 float vy = YVelocity(); local
161 return fabs(vx) > GestureConfiguration::rail_break_proportion() * fabs(vy) +
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
ContentViewScrollingTest.java 122 private void fling(final int vx, final int vy) throws Throwable {
126 getContentViewCore().flingForTest(SystemClock.uptimeMillis(), 0, 0, vx, vy);
  /external/chromium_org/v8/test/mjsunit/harmony/
module-parsing.js 40 export vy, lz, c, f
43 var vx, vy;
44 var vx = 0, vy
108 vy
  /external/chromium_org/ui/events/
events_stub.cc 113 float* vy,
  /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);

Completed in 662 milliseconds

1 2 3 4 5