HomeSort by relevance Sort by last modified time
    Searched refs:Identity (Results 126 - 150 of 259) sorted by null

1 2 3 4 56 7 8 91011

  /external/eigen/test/
lu.cpp 70 RMatrixType l = RMatrixType::Identity(rows,rows);
geo_quaternion.cpp 70 // Quaternion: Identity(), setIdentity();
73 VERIFY_IS_APPROX(Quaternionx(Quaternionx::Identity()).coeffs(), q2.coeffs());
product_extra.cpp 28 identity = MatrixType::Identity(rows, rows), local
main.h 376 MatrixType d = MatrixType::Identity(rows,cols);
sparse_basic.cpp 526 // test Identity matrix
528 DenseMatrix refMat1 = DenseMatrix::Identity(rows, rows);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
AbstractContactAggregator.java 58 import android.provider.ContactsContract.CommonDataKinds.Identity;
387 mMimeTypeIdIdentity = mDbHelper.getMimeTypeId(Identity.CONTENT_ITEM_TYPE);
742 * Build sql to check if there is any identity match/mis-match between two sets of raw contact
752 " ON (d1." + Identity.IDENTITY + matchingOperator +
753 " d2." + Identity.IDENTITY + " AND" +
754 " d1." + Identity.NAMESPACE + " = d2." + Identity.NAMESPACE + " )" +
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Quaternion.h 130 /** \returns a quaternion representing an identity rotation
131 * \sa MatrixBase::Identity()
133 static inline Quaternion Identity() { return Quaternion(1, 0, 0, 0); }
135 /** \sa Quaternion::Identity(), MatrixBase::setIdentity()
347 // set to identity
Transform.h 184 static const typename MatrixType::IdentityReturnType Identity()
186 return MatrixType::Identity();
  /external/eigen/Eigen/src/LU/
PartialPivLU.h 150 (*this, MatrixType::Identity(m_lu.rows(), m_lu.cols()));
FullPivLU.h 368 (*this, MatrixType::Identity(m_lu.rows(), m_lu.cols()));
  /external/eigen/Eigen/src/QR/
ColPivHouseholderQR.h 293 (*this, MatrixType::Identity(m_qr.rows(), m_qr.cols()));
FullPivHouseholderQR.h 289 (*this, MatrixType::Identity(m_qr.rows(), m_qr.cols()));
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixExponential.h 152 /** \brief Identity matrix of the same size as \c m_M. */
169 m_Id(MatrixType::Identity(M.rows(), M.cols())),
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 142 * and a sparse identity matrix. However, due to the fact that the sparse
686 dest.derived() = m_qr.matrixQ() * Dest::Identity(m_qr.rows(), m_qr.rows());
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 39 import android.provider.ContactsContract.CommonDataKinds.Identity;
518 protected Uri insertIdentity(long rawContactId, String identity, String namespace) {
521 values.put(Data.MIMETYPE, Identity.CONTENT_ITEM_TYPE);
522 values.put(Identity.NAMESPACE, namespace);
523 values.put(Identity.IDENTITY, identity);
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 702 Constant *Identity = ConstantExpr::getBinOpIdentity(Opcode, I->getType());
703 assert(Identity && "Associative operation without identity!");
704 Ops.emplace_back(Identity, APInt(Bitwidth, 1));
    [all...]
  /external/eigen/Eigen/src/Geometry/
Transform.h 496 * \brief Returns an identity transformation.
499 static const Transform Identity()
501 return Transform(MatrixType::Identity());
    [all...]
Quaternion.h 102 /** \returns a quaternion representing an identity rotation
103 * \sa MatrixBase::Identity()
105 static inline Quaternion<Scalar> Identity() { return Quaternion<Scalar>(1, 0, 0, 0); }
107 /** \sa QuaternionBase::Identity(), MatrixBase::setIdentity()
  /external/ceres-solver/internal/ceres/
schur_eliminator_impl.h 275 .solve(Matrix::Identity(e_block_size, e_block_size));
  /external/eigen/Eigen/src/Eigenvalues/
RealQZ.h 229 // init Z as Identity
231 m_Z = MatrixType::Identity(dim,dim);
  /prebuilts/tools/common/m2/repository/nekohtml/nekohtml/1.9.6.2/
nekohtml-1.9.6.2.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/nekohtml/nekohtml/1.9.16/
nekohtml-1.9.16.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/nekohtml/nekohtml/1.9.20/
nekohtml-1.9.20.jar 
  /frameworks/base/core/java/android/provider/
ContactsContract.java     [all...]

Completed in 924 milliseconds

1 2 3 4 56 7 8 91011