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

1 2 3

  /external/libcxx/test/libcxx/atomics/
diagnose_invalid_memory_order.fail.cpp 21 volatile std::atomic<int>& vx = x; local
28 vx.load(std::memory_order_release); // expected-warning {{memory order argument to atomic operation is invalid}}
29 vx.load(std::memory_order_acq_rel); // expected-warning {{memory order argument to atomic operation is invalid}}
39 std::atomic_load_explicit(&vx, std::memory_order_release); // expected-warning {{memory order argument to atomic operation is invalid}}
40 std::atomic_load_explicit(&vx, std::memory_order_acq_rel); // expected-warning {{memory order argument to atomic operation is invalid}}
52 vx.store(42, std::memory_order_consume); // expected-warning {{memory order argument to atomic operation is invalid}}
53 vx.store(42, std::memory_order_acquire); // expected-warning {{memory order argument to atomic operation is invalid}}
54 vx.store(42, std::memory_order_acq_rel); // expected-warning {{memory order argument to atomic operation is invalid}}
64 std::atomic_store_explicit(&vx, 42, std::memory_order_consume); // expected-warning {{memory order argument to atomic operation is invalid}}
65 std::atomic_store_explicit(&vx, 42, std::memory_order_acquire); // expected-warning {{memory order argument to atomic operation i (…)
    [all...]
  /external/pdfium/core/fpdfapi/render/
cpdf_charposlist.cpp 69 short vx; local
71 pCIDFont->GetVertOrigin(CID, vx, vy);
72 charpos.m_Origin.x -= FontSize * vx / 1000;
  /external/skia/src/opts/
SkBitmapProcState_filter_neon.h 28 uint16x4_t vx, vconst16_16, v16_x, tmp; local
44 vx = vdup_n_u16(x); // duplicate x into vx
46 v16_x = vsub_u16(vconst16_16, vx); // v16_x = 16-x
48 tmp = vmul_u16(vget_high_u16(tmp1), vx); // tmp = a01 * x
49 tmp = vmla_u16(tmp, vget_high_u16(tmp2), vx); // tmp += a11 * x
63 uint16x4_t vx, vconst16_16, v16_x, tmp, vscale; local
79 vx = vdup_n_u16(x); // duplicate x into vx
81 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 904 float vx = (position.x - oldestPosition.x) * scale; local
906 accumVx = (accumVx * lastDuration + vx * duration) / (duration + lastDuration);
    [all...]
  /external/kmod/testsuite/
test-list.c 174 const char *v1 = "v1", *v2 = "v2", *v3 = "v3", *vx = "vx"; local
189 l = kmod_list_insert_before(l, vx);
191 assert_return(l->data == vx, EXIT_FAILURE);
208 const char *v1 = "v1", *v2 = "v2", *v3 = "v3", *vx = "vx"; local
220 l = kmod_list_insert_after(l, vx);
225 assert_return(l->data == vx, EXIT_FAILURE);
  /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/pdfium/core/fpdfapi/page/
cpdf_textobject.cpp 43 short vx; local
45 pFont->AsCIDFont()->GetVertOrigin(CID, vx, vy);
48 pInfo->m_Origin.x -= fontsize * vx / 1000;
228 short vx; local
230 pCIDFont->GetVertOrigin(CID, vx, vy);
231 char_rect.left -= vx;
232 char_rect.right -= vx;
  /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);
91 vx = vx * units / 1000;
94 if (vx > maxVelocity) {
95 vx = maxVelocity;
96 } else if (vx < -maxVelocity) {
97 vx = -maxVelocity;
106 velocity.vx = vx
116 float vx, vy; local
182 float vx; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_clip.c 234 float vx = y1 * z2 - z1 * y2; local
238 return (vx*vx + vy*vy + vz*vz) == 0.f;
  /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;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
floatobject.c 707 double vx, wx; local
709 CONVERT_TO_DOUBLE(v, vx);
719 mod = fmod(vx, wx);
742 double vx, wx; local
744 CONVERT_TO_DOUBLE(v, vx);
751 mod = fmod(vx, wx);
752 /* fmod is typically exact, so vx-mod is *mathematically* an
754 vx - mod is an approximation; the result is that div may
758 div = (vx - mod) / wx;
784 floordiv = div * vx / wx; /* zero w/ sign of vx/wx */
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
floatobject.c 706 double vx, wx; local
708 CONVERT_TO_DOUBLE(v, vx);
718 mod = fmod(vx, wx);
741 double vx, wx; local
743 CONVERT_TO_DOUBLE(v, vx);
750 mod = fmod(vx, wx);
751 /* fmod is typically exact, so vx-mod is *mathematically* an
753 vx - mod is an approximation; the result is that div may
757 div = (vx - mod) / wx;
783 floordiv = div * vx / wx; /* zero w/ sign of vx/wx */
    [all...]
  /external/opencv/cvaux/src/
cvvecfacetracking.cpp 585 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));
    [all...]
  /external/python/cpython2/Objects/
floatobject.c 716 double vx, wx; local
718 CONVERT_TO_DOUBLE(v, vx);
728 mod = fmod(vx, wx);
751 double vx, wx; local
753 CONVERT_TO_DOUBLE(v, vx);
760 mod = fmod(vx, wx);
761 /* fmod is typically exact, so vx-mod is *mathematically* an
763 vx - mod is an approximation; the result is that div may
767 div = (vx - mod) / wx;
793 floordiv = div * vx / wx; /* zero w/ sign of vx/wx *
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bigdec/
DiagBigDecimalTest.java 2041 android.icu.math.BigDecimal vx; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bigdec/
DiagBigDecimalTest.java 2040 com.ibm.icu.math.BigDecimal vx; local
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_sample.c 2227 const float vx = dvdx * scaling; local
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_texfilter.c 1665 GLfloat vx = dvdx * scaling; local
1786 GLfloat vx = dvdx * scaling; local
    [all...]
  /external/pdfium/xfa/fxfa/app/
xfa_ffwidget.cpp 1260 FX_FLOAT vx = 1.0f; local
1447 FX_FLOAT vx = 1.0f; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PhotoView.java 1092 int vx = (int) (velocityX + 0.5f); local
    [all...]

Completed in 653 milliseconds

1 2 3