HomeSort by relevance Sort by last modified time
    Searched defs:squaredNorm (Results 1 - 8 of 8) sorted by null

  /external/eigen/Eigen/src/SparseCore/
SparseDot.h 80 SparseMatrixBase<Derived>::squaredNorm() const
89 return internal::sqrt(squaredNorm());
  /external/eigen/Eigen/src/Core/
Dot.h 58 * \sa squaredNorm(), norm()
113 EIGEN_STRONG_INLINE typename NumTraits<typename internal::traits<Derived>::Scalar>::Real MatrixBase<Derived>::squaredNorm() const
122 * \sa dot(), squaredNorm()
127 return internal::sqrt(squaredNorm());
230 return internal::abs2(nested.dot(otherNested)) <= prec * prec * nested.squaredNorm() * otherNested.squaredNorm();
250 if(!internal::isApprox(nested.col(i).squaredNorm(), static_cast<RealScalar>(1), prec))
VectorwiseOp.h 118 EIGEN_MEMBER_FUNCTOR(squaredNorm, Size * NumTraits<Scalar>::MulCost + (Size-1)*NumTraits<Scalar>::AddCost);
282 * \sa DenseBase::squaredNorm() */
283 const typename ReturnType<internal::member_squaredNorm,RealScalar>::Type squaredNorm() const
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Quaternion.h 140 * \sa Quaternion::norm(), MatrixBase::squaredNorm()
142 inline Scalar squaredNorm() const { return m_coeffs.squaredNorm(); }
145 * \sa Quaternion::squaredNorm(), MatrixBase::norm()
378 Scalar n2 = this->squaredNorm();
  /external/eigen/Eigen/src/Geometry/
Quaternion.h 112 * \sa QuaternionBase::norm(), MatrixBase::squaredNorm()
114 inline Scalar squaredNorm() const { return coeffs().squaredNorm(); }
117 * \sa QuaternionBase::squaredNorm(), MatrixBase::norm()
648 Scalar n2 = this->squaredNorm();
  /frameworks/base/core/java/android/widget/
OverScroller.java 176 float squaredNorm = mScrollerX.mCurrVelocity * mScrollerX.mCurrVelocity;
177 squaredNorm += mScrollerY.mCurrVelocity * mScrollerY.mCurrVelocity;
178 return FloatMath.sqrt(squaredNorm);
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
OverScrollerSGV.java 180 float squaredNorm = mScrollerX.mCurrVelocity * mScrollerX.mCurrVelocity;
181 squaredNorm += mScrollerY.mCurrVelocity * mScrollerY.mCurrVelocity;
182 return FloatMath.sqrt(squaredNorm);
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
OverScroller.java 178 float squaredNorm = mScrollerX.mCurrVelocity * mScrollerX.mCurrVelocity;
179 squaredNorm += mScrollerY.mCurrVelocity * mScrollerY.mCurrVelocity;
180 return FloatMath.sqrt(squaredNorm);
    [all...]

Completed in 814 milliseconds