HomeSort by relevance Sort by last modified time
    Searched refs:Dynamic (Results 226 - 250 of 381) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/Eigen/src/Core/
SolveTriangular.h 35 Unrolling = (RhsIsVectorAtCompileTime && Rhs::SizeAtCompileTime != Dynamic && Rhs::SizeAtCompileTime <= 8)
37 RhsVectors = RhsIsVectorAtCompileTime ? 1 : Dynamic
56 typedef Map<Matrix<RhsScalar,Dynamic,1>, Aligned> MappedRhs;
82 struct triangular_solver_selector<Lhs,Rhs,Side,Mode,NoUnrolling,Dynamic>
VectorwiseOp.h 61 CoeffReadCost = TraversalSize==Dynamic ? Dynamic
412 typedef Replicate<ExpressionType,Direction==Vertical?Dynamic:1,Direction==Horizontal?Dynamic:1> ReplicateReturnType;
565 HNormalized_SizeMinusOne = HNormalized_Size==Dynamic ? Dynamic : HNormalized_Size-1
Transpose.h 250 bool IsSquare = (MatrixType::RowsAtCompileTime == MatrixType::ColsAtCompileTime) && MatrixType::RowsAtCompileTime!=Dynamic>
294 eigen_assert((rows() == cols() || (RowsAtCompileTime == Dynamic && ColsAtCompileTime == Dynamic))
  /external/eigen/Eigen/src/Core/products/
TriangularMatrixVector_MKL.h 132 typedef Matrix<EIGTYPE, Dynamic, Dynamic> MatrixLhs; \
217 typedef Matrix<EIGTYPE, Dynamic, Dynamic> MatrixLhs; \
  /external/eigen/Eigen/src/QR/
HouseholderQR.h 261 typedef Block<MatrixQR,Dynamic,Dynamic> BlockType;
267 typedef Matrix<Scalar,Dynamic,1,ColMajor,MatrixQR::MaxColsAtCompileTime,1> TempType;
293 Block<HCoeffs,Dynamic,1> hCoeffsSegment = hCoeffs.segment(k,bs);
  /external/eigen/Eigen/src/misc/
Image.h 28 Dynamic, // we don't know at compile time the dimension of the image (the rank)
  /external/eigen/test/eigen2/
eigen2_mixingtypes.cpp 76 CALL_SUBTEST_3(mixingtypes<Dynamic>(20));
eigen2_sparse_product.cpp 20 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
21 typedef Matrix<Scalar,Dynamic,1> DenseVector;
  /external/eigen/test/
smallvectors.cpp 18 typedef Matrix<Scalar, Dynamic, 1> VX;
sparse_permutations.cpp 21 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
22 typedef Matrix<Index,Dynamic,1> VectorI;
42 PermutationMatrix<Dynamic> p, p_null;
lu.cpp 22 if(MatrixType::RowsAtCompileTime==Dynamic)
30 if(MatrixType::ColsAtCompileTime==Dynamic)
197 CALL_SUBTEST_7(( lu_non_invertible<Matrix<float,Dynamic,16> >() ));
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffJacobian.h 62 if(InputsAtCompileTime==Dynamic)
AutoDiffScalar.h 452 if((A_Rows==Dynamic || A_Cols==Dynamic) && (a.size()==0))
464 if((B_Rows==Dynamic || B_Cols==Dynamic) && (b.size()==0))
479 if((A_Rows==Dynamic || A_Cols==Dynamic) && (a.size()==0))
484 else if((B_Rows==Dynamic || B_Cols==Dynamic) && (b.size()==0))
592 inline const AutoDiffScalar<Matrix<typename internal::traits<DerTypeA>::Scalar,Dynamic,1> >
598 typedef AutoDiffScalar<Matrix<Scalar,Dynamic,1> > PlainADS
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
IncompleteCholesky.h 37 typedef PermutationMatrix<Dynamic, Dynamic, Index> PermutationType;
38 typedef Matrix<Scalar,Dynamic,1> ScalarType;
39 typedef Matrix<Index,Dynamic, 1> IndexType;
  /external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h 44 RowsAtCompileTime = Dynamic,
45 ColsAtCompileTime = Dynamic,
46 MaxRowsAtCompileTime = Dynamic,
47 MaxColsAtCompileTime = Dynamic,
  /external/eigen/unsupported/test/
svd_common.h 92 typedef Matrix<Scalar, RowsAtCompileTime, Dynamic> RhsType;
93 typedef Matrix<Scalar, ColsAtCompileTime, Dynamic> SolutionType;
120 if (MatrixType::ColsAtCompileTime == Dynamic) {
121 // thin U/V are only available with dynamic number of columns
167 if (ColsAtCompileTime == Dynamic)
  /external/eigen/Eigen/src/SparseCore/
SparseProduct.h 71 CoeffReadCost = Dynamic
136 ProductIsValid = _LhsNested::ColsAtCompileTime==Dynamic
137 || _RhsNested::RowsAtCompileTime==Dynamic
  /external/eigen/bench/
BenchSparseUtil.h 23 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
24 typedef Matrix<Scalar,Dynamic,1> DenseVector;
  /external/eigen/Eigen/src/PardisoSupport/
PardisoSupport.h 108 typedef Matrix<Scalar,Dynamic,1> VectorType;
373 Matrix<Scalar,Dynamic,Dynamic,ColMajor> tmp;
492 PermutationMatrix<Dynamic,Dynamic,Index> p_null;
551 PermutationMatrix<Dynamic,Dynamic,Index> p_null;
  /external/eigen/blas/
level3_impl.h 59 internal::gemm_blocking_space<ColMajor,Scalar,Scalar,Dynamic,Dynamic,Dynamic> blocking(*m,*n,*k);
134 internal::gemm_blocking_space<ColMajor,Scalar,Scalar,Dynamic,Dynamic,Dynamic,4> blocking(*m,*n,*m);
139 internal::gemm_blocking_space<ColMajor,Scalar,Scalar,Dynamic,Dynamic,Dynamic,4> blocking(*m,*n,*n);
220 Matrix<Scalar,Dynamic,Dynamic,ColMajor> tmp = matrix(b,*m,*n,*ldb)
    [all...]
  /external/ceres-solver/internal/ceres/
schur_eliminator_impl.h 188 #pragma omp parallel for num_threads(num_threads_) schedule(dynamic)
222 #pragma omp parallel for num_threads(num_threads_) schedule(dynamic)
310 #pragma omp parallel for num_threads(num_threads_) schedule(dynamic)
569 MatrixTransposeVectorMultiply<Eigen::Dynamic, Eigen::Dynamic, 1>(
591 // dynamic. Since the number of rows without e_blocks is small, the
616 <Eigen::Dynamic, Eigen::Dynamic, Eigen::Dynamic, Eigen::Dynamic, 1>
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangParser.m 40 #pragma mark Dynamic Global Scopes
42 #pragma mark Dynamic Rule Scopes
173 #pragma mark Dynamic Rule Scopes
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteParser.m 38 #pragma mark Dynamic Global Scopes
40 #pragma mark Dynamic Rule Scopes
131 #pragma mark Dynamic Rule Scopes
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 74 typedef Matrix<Index, Dynamic, 1> IndexVector;
75 typedef Matrix<Scalar, Dynamic, 1> ScalarVector;
76 typedef PermutationMatrix<Dynamic, Dynamic, Index> PermutationType;
637 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
  /external/eigen/Eigen/src/Geometry/
AlignedBox.h 23 * \param _AmbientDim the dimension of the ambient space, can be a compile time value or Dynamic.
60 { if (AmbientDimAtCompileTime!=Dynamic) setEmpty(); }
82 inline Index dim() const { return AmbientDimAtCompileTime==Dynamic ? m_min.size() : Index(AmbientDimAtCompileTime); }
347 * \c AlignedBoxSizeType where \c Size can be \c 1, \c 2,\c 3,\c 4 for fixed size boxes or \c X for dynamic size,
350 * For example, \c AlignedBox3d is a fixed-size 3x3 aligned box type of doubles, and \c AlignedBoxXf is a dynamic-size aligned box of floats.
364 EIGEN_MAKE_TYPEDEFS(Type, TypeSuffix, Dynamic, X)

Completed in 5961 milliseconds

1 2 3 4 5 6 7 8 91011>>