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

1 2 3

  /external/clang/test/CXX/basic/basic.def.odr/
p2-typeid.cpp 28 void test(X<Poly> xp, X<Poly, Poly&> xpr, X<NonPoly> xnp, X<NonPoly, NonPoly&> xnpr) {
35 xpr.g(Poly()); // expected-note{{instantiation of member function}}
  /external/eigen/Eigen/src/Core/
Block.h 118 inline Block(XprType& xpr, Index i) : Impl(xpr,i)
121 ((BlockRows==1) && (BlockCols==XprType::ColsAtCompileTime) && i<xpr.rows())
122 ||((BlockRows==XprType::RowsAtCompileTime) && (BlockCols==1) && i<xpr.cols())));
128 inline Block(XprType& xpr, Index startRow, Index startCol)
129 : Impl(xpr, startRow, startCol)
132 eigen_assert(startRow >= 0 && BlockRows >= 0 && startRow + BlockRows <= xpr.rows()
133 && startCol >= 0 && BlockCols >= 0 && startCol + BlockCols <= xpr.cols());
139 inline Block(XprType& xpr,
142 : Impl(xpr, startRow, startCol, blockRows, blockCols
    [all...]
Reverse.h 172 static void run(ExpressionType &xpr)
174 Index half = xpr.rows()/2;
175 xpr.topRows(half).swap(xpr.bottomRows(half).colwise().reverse());
183 static void run(ExpressionType &xpr)
185 Index half = xpr.cols()/2;
186 xpr.leftCols(half).swap(xpr.rightCols(half).rowwise().reverse());
CommaInitializer.h 33 inline CommaInitializer(XprType& xpr, const Scalar& s)
34 : m_xpr(xpr), m_row(0), m_col(1), m_currentBlockRows(1)
41 inline CommaInitializer(XprType& xpr, const DenseBase<OtherDerived>& other)
42 : m_xpr(xpr), m_row(0), m_col(other.cols()), m_currentBlockRows(other.rows())
ReturnByValue.h 102 EIGEN_DEVICE_FUNC explicit evaluator(const XprType& xpr)
103 : m_result(xpr.rows(), xpr.cols())
106 xpr.evalTo(m_result);
CoreIterators.h 40 /** Construct an iterator over the \a outerId -th row or column of \a xpr */
41 InnerIterator(const XprType &xpr, const Index &outerId)
42 : m_eval(xpr), m_iter(m_eval, outerId, xpr.innerSize())
CwiseUnaryOp.h 65 explicit CwiseUnaryOp(const XprType& xpr, const UnaryOp& func = UnaryOp())
66 : m_xpr(xpr), m_functor(func) {}
Inverse.h 54 explicit EIGEN_DEVICE_FUNC Inverse(const XprType &xpr)
55 : m_xpr(xpr)
ProductEvaluators.h 35 EIGEN_DEVICE_FUNC explicit evaluator(const XprType& xpr) : Base(xpr) {}
58 EIGEN_DEVICE_FUNC explicit evaluator(const XprType& xpr)
59 : Base(xpr.lhs().functor().m_other * xpr.rhs().lhs() * xpr.rhs().rhs())
71 EIGEN_DEVICE_FUNC explicit evaluator(const XprType& xpr)
73 Product<Lhs, Rhs, LazyProduct>(xpr.nestedExpression().lhs(), xpr.nestedExpression().rhs()),
74 xpr.index() )
    [all...]
Visitor.h 64 explicit visitor_evaluator(const XprType &xpr) : m_evaluator(xpr), m_xpr(xpr) {}
CoreEvaluators.h 93 EIGEN_DEVICE_FUNC explicit evaluator(const T& xpr) : Base(xpr) {}
103 explicit evaluator(const T& xpr) : evaluator<T>(xpr) {}
581 EIGEN_DEVICE_FUNC explicit evaluator(const XprType& xpr) : Base(xpr) {}
612 EIGEN_DEVICE_FUNC explicit ternary_evaluator(const XprType& xpr)
613 : m_functor(xpr.functor()),
614 m_arg1Impl(xpr.arg1()),
615 m_arg2Impl(xpr.arg2()),
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparsePermutation.h 38 static inline void run(Dest& dst, const PermutationType& perm, const ExpressionType& xpr)
40 MatrixType mat(xpr);
107 explicit product_evaluator(const XprType& xpr)
108 : m_result(xpr.rows(), xpr.cols())
111 generic_product_impl<Lhs, Rhs, PermutationShape, SparseShape, ProductTag>::evalTo(m_result, xpr.lhs(), xpr.rhs());
130 explicit product_evaluator(const XprType& xpr)
131 : m_result(xpr.rows(), xpr.cols()
    [all...]
SparseCwiseBinaryOp.h 133 explicit binary_evaluator(const XprType& xpr)
134 : m_functor(xpr.functor()),
135 m_lhsImpl(xpr.lhs()),
136 m_rhsImpl(xpr.rhs())
219 explicit binary_evaluator(const XprType& xpr)
220 : m_functor(xpr.functor()),
221 m_lhsImpl(xpr.lhs()),
222 m_rhsImpl(xpr.rhs()),
223 m_expr(xpr)
307 explicit binary_evaluator(const XprType& xpr)
    [all...]
SparseDiagonalProduct.h 45 explicit product_evaluator(const XprType& xpr) : Base(xpr.rhs(), xpr.lhs().diagonal()) {}
56 explicit product_evaluator(const XprType& xpr) : Base(xpr.lhs(), xpr.rhs().diagonal().transpose()) {}
SparseBlock.h 31 inline BlockImpl(XprType& xpr, Index i)
32 : m_matrix(xpr), m_outerStart(convert_index(i)), m_outerSize(OuterSize)
35 inline BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols)
36 : m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(convert_index(IsRowMajor ? blockRows : blockCols))
111 inline sparse_matrix_block_impl(SparseMatrixType& xpr, Index i)
112 : m_matrix(xpr), m_outerStart(convert_index(i)), m_outerSize(OuterSize)
115 inline sparse_matrix_block_impl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols)
116 : m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(convert_index(IsRowMajor ? blockRows : blockCols))
294 inline BlockImpl(SparseMatrixType& xpr, Index i)
295 : Base(xpr, i
    [all...]
SparseProduct.h 146 explicit unary_evaluator(const XprType& xpr)
147 : m_result(xpr.rows(), xpr.cols())
153 LhsNested lhsNested(xpr.nestedExpression().lhs());
154 RhsNested rhsNested(xpr.nestedExpression().rhs());
158 abs(xpr.reference())*xpr.epsilon());
SparseView.h 129 explicit unary_evaluator(const XprType& xpr) : m_argImpl(xpr.nestedExpression()), m_view(xpr) {}
198 explicit unary_evaluator(const XprType& xpr) : m_argImpl(xpr.nestedExpression()), m_view(xpr) {}
SparseTriangularView.h 94 explicit unary_evaluator(const XprType &xpr) : m_argImpl(xpr.nestedExpression()), m_arg(xpr.nestedExpression()) {}
SparseSelfAdjointView.h 387 product_evaluator(const XprType& xpr)
388 : m_lhs(xpr.lhs()), m_result(xpr.rows(), xpr.cols())
391 generic_product_impl<typename Rhs::PlainObject, Rhs, SparseShape, SparseShape, ProductTag>::evalTo(m_result, m_lhs, xpr.rhs());
407 product_evaluator(const XprType& xpr)
408 : m_rhs(xpr.rhs()), m_result(xpr.rows(), xpr.cols())
411 generic_product_impl<Lhs, typename Lhs::PlainObject, SparseShape, SparseShape, ProductTag>::evalTo(m_result, xpr.lhs(), m_rhs)
    [all...]
SparseDenseProduct.h 295 explicit product_evaluator(const XprType& xpr)
296 : Base(xpr.lhs(), xpr.rhs())
310 explicit product_evaluator(const XprType& xpr)
311 : Base(xpr.lhs(), xpr.rhs())
  /external/eigen/unsupported/Eigen/src/SparseExtra/
BlockOfDynamicSparseMatrix.h 38 inline InnerIterator(const SparseInnerVectorSet& xpr, Index outer)
39 : MatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer)
  /external/eigen/Eigen/src/Geometry/
Homogeneous.h 405 typedef CwiseBinaryOp<internal::scalar_sum_op<typename Lhs::Scalar,typename Rhs::Scalar>, const LinearProduct, const ConstantBlock> Xpr;
410 : public evaluator<typename homogeneous_right_product_refactoring_helper<typename Lhs::NestedExpression,Rhs>::Xpr>
415 typedef typename helper::Xpr RefactoredXpr;
418 EIGEN_DEVICE_FUNC explicit product_evaluator(const XprType& xpr)
419 : Base( xpr.lhs().nestedExpression() .lazyProduct( xpr.rhs().template topRows<helper::Dim>(xpr.lhs().nestedExpression().cols()) )
420 + ConstantBlock(xpr.rhs().row(xpr.rhs().rows()-1),xpr.lhs().rows(), 1)
    [all...]
  /external/eigen/test/
nesting_ops.cpp 16 void use_n_times(const XprType &xpr)
18 typename internal::nested_eval<XprType,N>::type mat(xpr);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/auth/x500/
X500PrincipalTest.java 50 X500Principal xpr = new X500Principal(name); local
51 assertNotNull("Null object returned", xpr);
52 String resName = xpr.getName();
59 X500Principal xpr = new X500Principal((String)null); local
67 X500Principal xpr = new X500Principal("X500PrincipalName"); local
85 X500Principal xpr = new X500Principal(is); local
86 assertNotNull("Null object returned", xpr);
87 byte[] resArray = xpr.getEncoded();
94 X500Principal xpr = new X500Principal(isNull); local
103 X500Principal xpr = new X500Principal(is) local
120 X500Principal xpr = new X500Principal(ba); local
129 X500Principal xpr = new X500Principal(baNull); local
138 X500Principal xpr = new X500Principal(ba); local
151 X500Principal xpr = new X500Principal(name); local
166 X500Principal xpr = new X500Principal(name); local
206 X500Principal xpr = new X500Principal(name); local
220 X500Principal xpr = new X500Principal(name); local
235 X500Principal xpr = new X500Principal(ba); local
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorExpr.h 62 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorCwiseNullaryOp(const XprType& xpr, const NullaryOp& func = NullaryOp())
63 : m_xpr(xpr), m_functor(func) {}
123 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorCwiseUnaryOp(const XprType& xpr, const UnaryOp& func = UnaryOp())
124 : m_xpr(xpr), m_functor(func) {}

Completed in 397 milliseconds

1 2 3