Searched refs:ResultType (Results 1 - 25 of 78) sorted by relevance

1234

/external/eigen/Eigen/src/SparseCore/
H A DConservativeSparseSparseProduct.h17 template<typename Lhs, typename Rhs, typename ResultType>
18 static void conservative_sparse_sparse_product_impl(const Lhs& lhs, const Rhs& rhs, ResultType& res)
123 template<typename Lhs, typename Rhs, typename ResultType,
126 int ResStorageOrder = (traits<ResultType>::Flags&RowMajorBit) ? RowMajor : ColMajor>
129 template<typename Lhs, typename Rhs, typename ResultType>
130 struct conservative_sparse_sparse_product_selector<Lhs,Rhs,ResultType,ColMajor,ColMajor,ColMajor>
135 static void run(const Lhs& lhs, const Rhs& rhs, ResultType& res)
137 typedef SparseMatrix<typename ResultType::Scalar,RowMajor,typename ResultType::Index> RowMajorMatrix;
138 typedef SparseMatrix<typename ResultType
[all...]
H A DSparseSparseProductWithPruning.h19 template<typename Lhs, typename Rhs, typename ResultType>
20 static void sparse_sparse_product_with_pruning_impl(const Lhs& lhs, const Rhs& rhs, ResultType& res, const typename ResultType::RealScalar& tolerance)
45 if(ResultType::IsRowMajor)
76 template<typename Lhs, typename Rhs, typename ResultType,
79 int ResStorageOrder = traits<ResultType>::Flags&RowMajorBit>
82 template<typename Lhs, typename Rhs, typename ResultType>
83 struct sparse_sparse_product_with_pruning_selector<Lhs,Rhs,ResultType,ColMajor,ColMajor,ColMajor>
86 typedef typename ResultType::RealScalar RealScalar;
88 static void run(const Lhs& lhs, const Rhs& rhs, ResultType
[all...]
/external/eigen/Eigen/src/LU/
H A DInverse.h21 template<typename MatrixType, typename ResultType, int Size = MatrixType::RowsAtCompileTime>
24 static inline void run(const MatrixType& matrix, ResultType& result)
30 template<typename MatrixType, typename ResultType, int Size = MatrixType::RowsAtCompileTime>
37 template<typename MatrixType, typename ResultType>
38 struct compute_inverse<MatrixType, ResultType, 1>
40 static inline void run(const MatrixType& matrix, ResultType& result)
47 template<typename MatrixType, typename ResultType>
48 struct compute_inverse_and_det_with_check<MatrixType, ResultType, 1>
53 ResultType& result,
54 typename ResultType
130 compute_inverse_size3_helper( const MatrixType& matrix, const typename ResultType::Scalar& invdet, const Matrix<typename ResultType::Scalar,3,1>& cofactors_col0, ResultType& result) argument
[all...]
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp313 llvm::Type *ResultType = nullptr;
332 ResultType = llvm::Type::getInt8Ty(getLLVMContext());
337 ResultType = llvm::Type::getInt1Ty(getLLVMContext());
356 ResultType = llvm::IntegerType::get(getLLVMContext(),
362 ResultType =
370 ResultType = getTypeForFormat(getLLVMContext(),
377 ResultType = llvm::Type::getInt8PtrTy(getLLVMContext());
382 ResultType = llvm::IntegerType::get(getLLVMContext(), 128);
393 ResultType = CGM.getOpenCLRuntime().convertOpenCLSpecificType(Ty);
409 ResultType
[all...]
H A DCGVTables.cpp70 QualType ResultType, RValue RV,
73 bool NullCheckValue = !ResultType->isReferenceType();
132 QualType ResultType = FPT->getReturnType(); local
181 RV = PerformReturnAdjustment(*this, ResultType, RV, Thunk);
199 QualType ResultType = CGM.getCXXABI().HasThisReturn(GD) local
213 CGM.getCXXABI().addImplicitStructorParams(*this, ResultType, FunctionArgs);
216 StartFunction(GlobalDecl(), ResultType, Fn, FnInfo, FunctionArgs, local
280 QualType ResultType = CGM.getCXXABI().HasThisReturn(CurGD) local
286 if (!ResultType->isVoidType() &&
289 Slot = ReturnValueSlot(ReturnValue, ResultType
69 PerformReturnAdjustment(CodeGenFunction &CGF, QualType ResultType, RValue RV, const ThunkInfo &Thunk) argument
[all...]
H A DCGObjCRuntime.h155 QualType ResultType,
171 QualType ResultType,
/external/lldb/include/lldb/Expression/
H A DClangExpression.h43 enum ResultType { enum in class:lldb_private::ClangExpression
109 virtual ResultType
H A DClangUserExpression.h75 ResultType desired_type);
271 virtual ResultType
350 ResultType desired_type,
363 ResultType desired_type,
410 ResultType m_desired_type; ///< The type to coerce the expression's result to. If eResultTypeAny, inferred from the expression.
/external/eigen/Eigen/src/Eigen2Support/
H A DLU.h51 template<typename OtherDerived, typename ResultType>
52 bool solve(const MatrixBase<OtherDerived>& b, ResultType *result) const
58 template<typename ResultType>
59 inline void computeInverse(ResultType *result) const
H A DQR.h29 template<typename OtherDerived, typename ResultType>
30 bool solve(const MatrixBase<OtherDerived>& b, ResultType *result) const
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixPower.h27 template<typename ResultType>
28 inline void evalTo(ResultType& res) const
316 template<typename ResultType>
317 void compute(ResultType& res, RealScalar p);
334 template<typename ResultType>
335 void computeIntPower(ResultType&, RealScalar);
337 template<typename ResultType>
338 void computeFracPower(ResultType&, RealScalar);
354 template<typename ResultType>
355 void MatrixPower<MatrixType>::compute(ResultType
[all...]
H A DMatrixSquareRoot.h53 template <typename ResultType> void compute(ResultType &result);
79 template <typename ResultType>
80 void MatrixSquareRootQuasiTriangular<MatrixType>::compute(ResultType &result)
274 template <typename ResultType> void compute(ResultType &result);
281 template <typename ResultType>
282 void MatrixSquareRootTriangular<MatrixType>::compute(ResultType &result)
333 template <typename ResultType> void compute(ResultType
[all...]
H A DMatrixFunction.h59 template <typename ResultType>
60 void compute(ResultType &result);
101 template <typename ResultType>
102 void compute(ResultType& result)
144 template <typename ResultType> void compute(ResultType& result);
201 template <typename ResultType>
202 void MatrixFunction<MatrixType,AtomicType,1>::compute(ResultType& result)
510 template <typename ResultType>
511 inline void evalTo(ResultType
[all...]
H A DMatrixExponential.h41 template <typename ResultType>
42 void compute(ResultType &result);
177 template <typename ResultType>
178 void MatrixExponential<MatrixType>::compute(ResultType &result)
417 template <typename ResultType>
418 inline void evalTo(ResultType& result) const
/external/eigen/Eigen/src/Geometry/
H A DTransform.h400 EIGEN_STRONG_INLINE const typename internal::transform_right_product_impl<Transform, OtherDerived>::ResultType
412 inline const typename internal::transform_left_product_impl<OtherDerived,Mode,Options,_Dim,_Dim+1>::ResultType
465 // Eigen::Transform<double, 3, Mode, Options>, <expression>>::ResultType (const Eigen::Transform<double, 3, Mode, Options> &) const")
470 typedef typename ProductType::ResultType ResultType; typedef in struct:Eigen::Transform::icc_11_workaround
476 inline typename icc_11_workaround<OtherMode,OtherOptions>::ResultType
485 inline typename internal::transform_transform_product_impl<Transform,Transform<Scalar,Dim,OtherMode,OtherOptions> >::ResultType
1250 typedef typename MatrixType::PlainObject ResultType; typedef in struct:Eigen::internal::transform_right_product_impl
1252 static EIGEN_STRONG_INLINE ResultType run(const TransformType& T, const MatrixType& other)
1268 typedef typename MatrixType::PlainObject ResultType; typedef in struct:Eigen::internal::transform_right_product_impl
1294 typedef typename MatrixType::PlainObject ResultType; typedef in struct:Eigen::internal::transform_right_product_impl
1318 typedef Transform<typename Other::Scalar,Dim,Projective,Options> ResultType; typedef in struct:Eigen::internal::transform_left_product_impl
1329 typedef Transform<typename Other::Scalar,Dim,Projective,Options> ResultType; typedef in struct:Eigen::internal::transform_left_product_impl
1345 typedef TransformType ResultType; typedef in struct:Eigen::internal::transform_left_product_impl
1361 typedef TransformType ResultType; typedef in struct:Eigen::internal::transform_left_product_impl
1377 typedef TransformType ResultType; typedef in struct:Eigen::internal::transform_left_product_impl
1399 typedef Transform<Scalar,Dim,ResultMode,LhsOptions> ResultType; typedef in struct:Eigen::internal::transform_transform_product_impl
1415 typedef Transform<Scalar,Dim,Projective> ResultType; typedef in struct:Eigen::internal::transform_transform_product_impl
1427 typedef Transform<Scalar,Dim,Projective> ResultType; typedef in struct:Eigen::internal::transform_transform_product_impl
1442 typedef Transform<Scalar,Dim,Projective> ResultType; typedef in struct:Eigen::internal::transform_transform_product_impl
[all...]
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineProduct.h248 template<typename Lhs, typename Rhs, typename ResultType,
252 template<typename Lhs, typename Rhs, typename ResultType>
253 struct skyline_product_selector<Lhs, Rhs, ResultType, RowMajor> {
256 static void run(const Lhs& lhs, const Rhs& rhs, ResultType & res) {
257 skyline_row_major_time_dense_product<Lhs, Rhs, ResultType > (lhs, rhs, res);
261 template<typename Lhs, typename Rhs, typename ResultType>
262 struct skyline_product_selector<Lhs, Rhs, ResultType, ColMajor> {
265 static void run(const Lhs& lhs, const Rhs& rhs, ResultType & res) {
266 skyline_col_major_time_dense_product<Lhs, Rhs, ResultType > (lhs, rhs, res);
/external/eigen/Eigen/src/LU/arch/
H A DInverse_SSE.h34 template<typename MatrixType, typename ResultType>
35 struct compute_inverse_size4<Architecture::SSE, float, MatrixType, ResultType>
39 ResultAlignment = bool(ResultType::Flags&AlignedBit),
40 StorageOrdersMatch = (MatrixType::Flags&RowMajorBit) == (ResultType::Flags&RowMajorBit)
43 static void run(const MatrixType& matrix, ResultType& result)
162 template<typename MatrixType, typename ResultType>
163 struct compute_inverse_size4<Architecture::SSE, double, MatrixType, ResultType>
167 ResultAlignment = bool(ResultType::Flags&AlignedBit),
168 StorageOrdersMatch = (MatrixType::Flags&RowMajorBit) == (ResultType::Flags&RowMajorBit)
170 static void run(const MatrixType& matrix, ResultType
[all...]
/external/eigen/Eigen/src/Eigenvalues/
H A DHessenbergDecomposition.h353 template <typename ResultType>
354 inline void evalTo(ResultType& result) const
/external/clang/test/SemaCXX/
H A Dtypo-correction.cpp375 enum ResultType { enum in class:class_member_typo_corrections::Result
381 ResultType type();
395 enum ResultType { enum in class:class_member_typo_corrections::Figure
402 ResultType type();
/external/eigen/Eigen/src/Core/
H A DMatrixBase.h339 template<typename ResultType>
340 void computeInverse(MatrixBase<ResultType> *result) const {
346 template<typename ResultType>
348 ResultType& inverse,
349 typename ResultType::Scalar& determinant,
353 template<typename ResultType>
355 ResultType& inverse,
/external/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp179 CodeCompletionString::Chunk::CreateResultType(const char *ResultType) { argument
180 return Chunk(CK_ResultType, ResultType);
362 void CodeCompletionBuilder::AddResultTypeChunk(const char *ResultType) { argument
363 Chunks.push_back(Chunk::CreateResultType(ResultType));
H A DSemaPseudoObject.cpp1118 QualType ResultType; local
1121 ResultType = PTy->getPointeeType();
1123 ResultType->getAsObjCQualifiedInterfaceType())
1124 ResultType = iQFaceTy->getBaseType();
1130 CheckKeyForObjCARCConversion(S, ResultType,
1136 if (ResultType.isNull()) {
1158 AtIndexGetter = S.LookupMethodInObjectType(AtIndexGetterSelector, ResultType,
1227 QualType ResultType; local
1230 ResultType = PTy->getPointeeType();
1232 ResultType
[all...]
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DTransform.h166 inline const typename ei_transform_product_impl<OtherDerived,_Dim,_Dim+1>::ResultType
744 typedef typename ProductReturnType<MatrixType,Other>::Type ResultType; typedef in struct:Eigen::ei_transform_product_impl
745 static ResultType run(const TransformType& tr, const Other& other)
754 typedef TransformType ResultType; typedef in struct:Eigen::ei_transform_product_impl
755 static ResultType run(const TransformType& tr, const Other& other)
770 typedef typename ProductReturnType<MatrixType,Other>::Type ResultType; typedef in struct:Eigen::ei_transform_product_impl
771 static ResultType run(const TransformType& tr, const Other& other)
780 typedef Matrix<Scalar,Dim,1> ResultType; typedef in struct:Eigen::ei_transform_product_impl
781 static ResultType run(const TransformType& tr, const Other& other)
/external/llvm/lib/IR/
H A DIRBuilder.cpp276 Type *ResultType,
280 Type *Types[] = {ResultType};
290 Type *ResultType,
293 Type *Types[] = {ResultType};
275 CreateGCResult(Instruction *Statepoint, Type *ResultType, const Twine &Name) argument
287 CreateGCRelocate(Instruction *Statepoint, int BaseOffset, int DerivedOffset, Type *ResultType, const Twine &Name) argument
/external/skia/src/core/
H A DSkStroke.cpp209 enum ResultType { enum in class:SkPathStroker
238 ResultType compareQuadConic(const SkConic& , SkQuadConstruct* );
239 ResultType compareQuadCubic(const SkPoint cubic[4], SkQuadConstruct* );
240 ResultType compareQuadQuad(const SkPoint quad[3], SkQuadConstruct* );
252 ResultType intersectRay(SkQuadConstruct* , IntersectRayType STROKER_DEBUG_PARAMS(int) ) const;
268 ResultType strokeCloseEnough(const SkPoint stroke[3], const SkPoint ray[2],
270 ResultType tangentsMeet(const SkPoint cubic[4], SkQuadConstruct* );
1022 SkPathStroker::ResultType SkPathStroker::intersectRay(SkQuadConstruct* quadPts,
1060 SkPathStroker::ResultType SkPathStroker::tangentsMeet(const SkPoint cubic[4],
1124 SkPathStroker::ResultType SkPathStroke
[all...]

Completed in 546 milliseconds

1234