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

1 2 3 4 5 6 7 8

  /external/chromium_org/ui/events/gesture_detection/
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...]
velocity_tracker_state.h 35 float vx, vy; member in struct:ui::VelocityTrackerState::Velocity
gesture_detector.cc 527 float vx,
529 if (!swipe_enabled_ || (!vx && !vy))
531 float vx_abs = std::abs(vx);
535 vx_abs = vx = 0;
549 vx = 0;
550 return listener_->OnSwipe(*current_down_event_, up, vx, vy);
  /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/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) {}
  /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...]
  /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-inlines.h 239 pixman_fixed_t vx,
247 if (vx < 0)
249 tmp = ((int64_t) unit_x - 1 - vx) / unit_x;
265 tmp = ((int64_t) unit_x - 1 - vx + max_vx) / unit_x - *left_pad;
309 pixman_fixed_t vx, \
327 x1 = pixman_fixed_to_int (vx); \
328 vx += unit_x; \
332 while (vx >= 0) \
333 vx -= src_width_fixed; \
337 x2 = pixman_fixed_to_int (vx); \
    [all...]
pixman-mips-dspr2.h 258 pixman_fixed_t vx, \
265 pixman_fixed_t vx, \
271 vx, unit_x); \
301 pixman_fixed_t vx, \
309 pixman_fixed_t vx, \
318 vx, unit_x); \
349 pixman_fixed_t vx, \
359 pixman_fixed_t vx, \
369 vx, unit_x); \
410 pixman_fixed_t vx, \
    [all...]
pixman-arm-common.h 238 pixman_fixed_t vx, \
246 pixman_fixed_t vx, \
252 vx, unit_x, \
283 pixman_fixed_t vx, \
293 pixman_fixed_t vx, \
301 vx, unit_x, \
350 pixman_fixed_t vx, \
358 dst, src_top, src_bottom, wt, wb, vx, unit_x, w); \
399 pixman_fixed_t vx, \
407 dst, mask, src_top, src_bottom, wt, wb, vx, unit_x, w);
    [all...]
  /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...]
  /hardware/akm/AK8975_FS/akmdfs/
AKFS_APIs.h 47 AKFLOAT* vx,
56 AKFLOAT* vx,
AKFS_APIs.c 147 @param[out] vx X axis value of magnetic field vector.
155 AKFLOAT* vx,
243 *vx = g_prms.mfv_hvec.u.x;
250 *accuracy, *vx, *vy, *vz);
265 @param[out] vx X axis value of acceleration vector.
274 AKFLOAT* vx,
328 *vx = g_prms.mfv_avec.u.x;
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){
13 this.vx = vx;
20 this.vx = -px / SOLAR_MASS;
88 px += b.vx * m;
110 bodyi.vx -= dx * bodyj.mass * mag;
114 bodyj.vx += dx * bodyi.mass * mag;
122 body.x += dt * body.vx;
137 ( bodyi.vx * bodyi.vx
    [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){
13 this.vx = vx;
20 this.vx = -px / SOLAR_MASS;
88 px += b.vx * m;
110 bodyi.vx -= dx * bodyj.mass * mag;
114 bodyj.vx += dx * bodyi.mass * mag;
122 body.x += dt * body.vx;
137 ( bodyi.vx * bodyi.vx
    [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){
13 this.vx = vx;
20 this.vx = -px / SOLAR_MASS;
88 px += b.vx * m;
110 bodyi.vx -= dx * bodyj.mass * mag;
114 bodyj.vx += dx * bodyi.mass * mag;
122 body.x += dt * body.vx;
137 ( bodyi.vx * bodyi.vx
    [all...]
  /external/eigen/blas/
level1_real_impl.h 67 StridedVectorType vx(vector(x,*n,std::abs(*incx)));
70 Reverse<StridedVectorType> rvx(vx);
74 else if(*incx>0 && *incy<0) internal::apply_rotation_in_the_plane(vx, rvy, JacobiRotation<Scalar>(c,s));
75 else internal::apply_rotation_in_the_plane(vx, vy, JacobiRotation<Scalar>(c,s));
level1_cplx_impl.h 99 StridedVectorType vx(vector(x,*n,std::abs(*incx)));
102 Reverse<StridedVectorType> rvx(vx);
107 else if(*incx>0 && *incy<0) internal::apply_rotation_in_the_plane(vx, rvy, JacobiRotation<Scalar>(c,s));
108 else internal::apply_rotation_in_the_plane(vx, vy, JacobiRotation<Scalar>(c,s));
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
mat2d.js 212 var vx = v[0], vy = v[1];
213 out[0] = a[0] * vx;
215 out[2] = a[2] * vx;
217 out[4] = a[4] * vx;
  /external/chromium_org/ui/webui/resources/js/
media_common.js 6 return /\.(3gp|asf|avi|di?vx|f4v|fbr|mov|mp4|m4v|mpe?g4?|ogm|ogv|ogx|webm|wmv?|xvid)$/i.test(path);
  /external/chromium_org/v8/test/mjsunit/harmony/
module-parsing.js 39 export vx
42 var vx
43 var vx, vy;
44 var vx = 0, vy
106 vx
  /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/ui/events/ozone/
events_ozone.cc 154 float* vx,
162 if (vx)
163 *vx = event->x_offset();

Completed in 1937 milliseconds

1 2 3 4 5 6 7 8