HomeSort by relevance Sort by last modified time
    Searched full:dotproduct (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/ui/gfx/
quad_f.cc 72 double dot00 = DotProduct(v0, v0);
73 double dot01 = DotProduct(v0, v1);
74 double dot11 = DotProduct(v1, v1);
75 double dot20 = DotProduct(v2, v0);
76 double dot21 = DotProduct(v2, v1);
vector2d_f.cc 49 double DotProduct(const Vector2dF& lhs, const Vector2dF& rhs) {
vector3d_f.cc 75 float DotProduct(const Vector3dF& lhs, const Vector3dF& rhs) {
vector2d_f.h 97 UI_EXPORT double DotProduct(const Vector2dF& lhs, const Vector2dF& rhs);
vector3d_f.h 108 UI_EXPORT float DotProduct(const Vector3dF& lhs, const Vector3dF& rhs);
matrix3_f.cc 221 if (DotProduct(e1, e2) < 0)
224 if (DotProduct(e1, e3) < 0)
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
Cone.cpp 58 double dotProduct = sourceToListener.dot(normalizedSourceOrientation);
59 double angle = 180.0 * acos(dotProduct) / piDouble;
  /packages/apps/Camera2/src/com/android/camera/crop/
GeometryMathUtils.java 100 public static float dotProduct(float[] a, float[] b) {
115 return dotProduct(a, b) / length;
  /frameworks/base/services/java/com/android/server/power/
WirelessChargerDetector.java 314 final double dotProduct = (x1 * x2) + (y1 * y2) + (z1 * z2);
324 final boolean moved = (dotProduct < mag1 * mag2 * MOVEMENT_ANGLE_COS_THRESHOLD);
329 + ", angle=" + (Math.acos(dotProduct / mag1 / mag2) * 180 / Math.PI)
330 + ", dotProduct=" + dotProduct
  /external/chromium_org/third_party/skia/include/core/
SkPoint.h 123 static int32_t DotProduct(const SkIPoint& a, const SkIPoint& b) {
418 static SkScalar DotProduct(const SkPoint& a, const SkPoint& b) {
433 return DotProduct(*this, vec);
437 return DotProduct(*this, *this);
  /external/skia/include/core/
SkPoint.h 123 static int32_t DotProduct(const SkIPoint& a, const SkIPoint& b) {
418 static SkScalar DotProduct(const SkPoint& a, const SkPoint& b) {
433 return DotProduct(*this, vec);
437 return DotProduct(*this, *this);
  /external/chromium_org/third_party/skia/src/core/
SkStrokerPriv.cpp 121 SkScalar dotProd = SkPoint::DotProduct(beforeUnitNormal, afterUnitNormal);
168 SkScalar dotProd = SkPoint::DotProduct(beforeUnitNormal, afterUnitNormal);
SkStroke.cpp 29 return SkPoint::DotProduct(norm0, norm1) <= kFlatEnoughNormalDotProd;
35 return SkPoint::DotProduct(norm0, norm1) <= kTooPinchyNormalDotProd;
262 SkScalar dot = SkPoint::DotProduct(unitNormalAB, *unitNormalBC);
340 SkScalar dot = SkPoint::DotProduct(unitNormalAB, unitBC);
343 dot = SkPoint::DotProduct(*unitNormalCD, unitBC);
  /external/skia/src/core/
SkStrokerPriv.cpp 121 SkScalar dotProd = SkPoint::DotProduct(beforeUnitNormal, afterUnitNormal);
168 SkScalar dotProd = SkPoint::DotProduct(beforeUnitNormal, afterUnitNormal);
SkStroke.cpp 29 return SkPoint::DotProduct(norm0, norm1) <= kFlatEnoughNormalDotProd;
35 return SkPoint::DotProduct(norm0, norm1) <= kTooPinchyNormalDotProd;
262 SkScalar dot = SkPoint::DotProduct(unitNormalAB, *unitNormalBC);
340 SkScalar dot = SkPoint::DotProduct(unitNormalAB, unitBC);
343 dot = SkPoint::DotProduct(*unitNormalCD, unitBC);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_utils.h 100 const float dotProduct = ray1x * ray2x + ray1y * ray2y;
103 const float projectionLengthSqr = dotProduct / lineLengthSqr;
  /external/ceres-solver/include/ceres/
rotation.h 192 T DotProduct(const T x[3], const T y[3]);
397 const T theta2 = DotProduct(angle_axis, angle_axis);
577 T DotProduct(const T x[3], const T y[3]) {
587 const T theta2 = DotProduct(angle_axis, angle_axis);
607 T w_dot_pt = DotProduct(w, pt);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
AccelerometerTestRenderer.java 188 public static float dotProduct(float[] left, float[] right) {
272 mAngle = (float) Math.acos(dotProduct(event.values, Z_AXIS));
  /external/openfst/src/include/fst/
power-weight.h 148 inline W DotProduct(const PowerWeight<W, n> &w1,
sparse-power-weight.h 181 inline const W& DotProduct(const SparsePowerWeight<W, K> &w1,
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
sparse_weight_vector.h 141 double DotProduct(const SparseWeightVector<Key, Hash> &s) const;
stochastic_linear_ranker.h 177 const double dot = weight_.DotProduct(sample);
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/lib/
libjnigraphics.so 
  /prebuilts/ndk/5/platforms/android-8/arch-arm/usr/lib/
libjnigraphics.so 
  /prebuilts/ndk/6/platforms/android-8/arch-arm/usr/lib/
libjnigraphics.so 

Completed in 743 milliseconds

1 2