HomeSort by relevance Sort by last modified time
    Searched defs:Scalar (Results 251 - 262 of 262) sorted by null

<<11

  /external/eigen/Eigen/src/Geometry/
Quaternion.h 42 typedef typename internal::traits<Derived>::Scalar Scalar;
43 typedef typename NumTraits<Scalar>::Real RealScalar;
49 // typedef typename Matrix<Scalar,4,1> Coefficients;
51 typedef Matrix<Scalar,3,1> Vector3;
53 typedef Matrix<Scalar,3,3> Matrix3;
55 typedef AngleAxis<Scalar> AngleAxisType;
60 inline Scalar x() const { return this->derived().coeffs().coeff(0); }
62 inline Scalar y() const { return this->derived().coeffs().coeff(1); }
64 inline Scalar z() const { return this->derived().coeffs().coeff(2);
    [all...]
Transform.h 73 * \tparam _Scalar the scalar type, i.e., the type of the coefficients
187 /** the scalar type of the coefficients */
188 typedef _Scalar Scalar;
191 typedef typename internal::make_proper_matrix_type<Scalar,Rows,HDim,Options>::type MatrixType;
195 typedef Matrix<Scalar,Dim,Dim,Options> LinearMatrixType;
209 typedef Matrix<Scalar,Dim,1> VectorType;
215 typedef Translation<Scalar,Dim> TranslationType;
220 typedef Transform<Scalar,Dim,TransformTimeDiagonalMode> TransformTimeDiagonalReturnType;
248 inline explicit Transform(const UniformScaling<Scalar>& s)
269 EIGEN_STATIC_ASSERT((internal::is_same<Scalar,typename OtherDerived::Scalar>::value)
    [all...]
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 19 bool IsComplex = NumTraits<typename MatrixType::Scalar>::IsComplex>
69 typedef typename MatrixType::Scalar Scalar;
75 typedef Matrix<Scalar, 1, RowsAtCompileTime, RowMajor, 1, MaxRowsAtCompileTime> WorkspaceType;
108 typedef typename MatrixType::Scalar Scalar;
117 typedef Matrix<Scalar, ColsAtCompileTime, RowsAtCompileTime, Options, MaxColsAtCompileTime, MaxRowsAtCompileTime>
195 typedef typename MatrixType::Scalar Scalar;
205 typedef Matrix<Scalar, ColsAtCompileTime, RowsAtCompileTime, Options, MaxColsAtCompileTime, MaxRowsAtCompileTime
    [all...]
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 81 typedef typename MatrixType::Scalar Scalar;
84 typedef SparseMatrix<Scalar,ColMajor,Index> CholMatrixType;
85 typedef Matrix<Scalar,Dynamic,1> VectorType;
181 s << " L: " << ((total+=(m_matrix.cols()+1) * sizeof(int) + m_matrix.nonZeros()*(sizeof(int)+sizeof(Scalar))) >> 20) << "Mb" << "\n";
182 s << " diag: " << ((total+=m_diag.size() * sizeof(Scalar)) >> 20) << "Mb" << "\n";
282 inline bool operator() (const Index& row, const Index& col, const Scalar&) const
314 typedef typename MatrixType::Scalar Scalar;
316 typedef SparseMatrix<Scalar, ColMajor, Index> CholMatrixType
    [all...]
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 36 int IsComplex = NumTraits<typename internal::traits<MatrixType>::Scalar>::IsComplex>
73 typedef typename Traits::Scalar Scalar;
80 typedef std::complex<Scalar> ComplexScalar;
128 typedef typename MatrixType::Scalar Scalar;
133 typedef typename NumTraits<Scalar>::Real RealScalar;
134 typedef Matrix<Scalar, Traits::RowsAtCompileTime, 1> VectorType;
137 typedef std::list<Scalar> Cluster;
139 typedef Matrix<Scalar, Dynamic, Dynamic, Options, RowsAtCompileTime, ColsAtCompileTime> DynMatrixType
    [all...]
  /external/eigen/unsupported/test/
NonLinearOptimization.cpp 107 typedef _Scalar Scalar;
112 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType;
113 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType;
114 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType;
    [all...]
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 93 bool Scalar : 1; // Init to true.
98 DVEntry() : Direction(ALL), Scalar(true), PeelFirst(false),
171 /// isScalar - Returns true if a particular level is scalar; that is,
265 /// isScalar - Returns true if a particular level is scalar; that is,
    [all...]
  /external/clang/lib/CodeGen/
CGValue.h 38 enum Flavor { Scalar, Complex, Aggregate };
46 bool isScalar() const { return V1.getInt() == Scalar; }
52 /// getScalarVal() - Return the Value* of this scalar value.
54 assert(isScalar() && "Not a scalar!");
73 ER.V1.setInt(Scalar);
  /external/eigen/Eigen/src/SparseCore/
SparseMatrix.h 32 * \tparam _Scalar the scalar type, i.e. the type of the coefficients
45 typedef _Scalar Scalar;
55 CoeffReadCost = NumTraits<Scalar>::ReadCost,
67 typedef _Scalar Scalar;
93 typedef MappedSparseMatrix<Scalar,Flags> Map;
95 typedef internal::CompressedStorage<Scalar,Index> Storage;
102 typedef SparseMatrix<Scalar,(Flags&~RowMajorBit)|(IsRowMajor?RowMajorBit:0)> TransposedSparseMatrix;
131 inline const Scalar* valuePtr() const { return &m_data.value(0); }
135 inline Scalar* valuePtr() { return &m_data.value(0); }
170 * This function returns Scalar(0) if the element is an explicit \em zero *
    [all...]
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 132 template<typename Scalar>
135 if (internal::is_same<Scalar,float>::value)
137 else if (internal::is_same<Scalar,double>::value)
139 else if (internal::is_same<Scalar,std::complex<float> >::value)
141 else if (internal::is_same<Scalar,std::complex<double> >::value)
145 eigen_assert(false && "Scalar type not supported by SuperLU");
156 res.setScalarType<typename MatrixType::Scalar>();
191 res.setScalarType<typename MatrixType::Scalar>();
205 template<typename Scalar, int Rows, int Cols, int Options, int MRows, int MCols>
206 struct SluMatrixMapHelper<Matrix<Scalar,Rows,Cols,Options,MRows,MCols>
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 336 /// The index in the basic block of the last scalar.
353 assert(!ScalarToTreeEntry.count(VL[i]) && "Scalar already in tree!");
367 /// Maps a specific scalar to its tree entry.
376 Scalar(S), User(U), Lane(L){};
377 // Which scalar in our function.
378 Value *Scalar;
379 // Which user that uses the scalar.
381 // Which lane does the scalar belong to.
387 /// This list holds pairs of (Internal Scalar : External User).
424 Value *Scalar = Entry->Scalars[Lane]
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.test.performance_3.6.0.v20091014.jar 

Completed in 547 milliseconds

<<11