Searched defs:ResultType (Results 1 - 25 of 53) sorted by relevance

123

/external/eigen/Eigen/src/LU/
H A DInverseImpl.h22 template<typename MatrixType, typename ResultType, int Size = MatrixType::RowsAtCompileTime>
26 static inline void run(const MatrixType& matrix, ResultType& result)
32 template<typename MatrixType, typename ResultType, int Size = MatrixType::RowsAtCompileTime>
39 template<typename MatrixType, typename ResultType>
40 struct compute_inverse<MatrixType, ResultType, 1>
43 static inline void run(const MatrixType& matrix, ResultType& result)
51 template<typename MatrixType, typename ResultType>
52 struct compute_inverse_and_det_with_check<MatrixType, ResultType, 1>
58 ResultType& result,
59 typename ResultType
140 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/llvm/lib/Target/NVPTX/
H A DNVPTXGenericToNVVM.cpp183 Type *ResultType = local
186 M, Intrinsic::nvvm_ptr_global_to_gen, {ResultType, DestTy});
/external/pdfium/third_party/base/numerics/
H A Dsafe_math.h375 struct ResultType;
380 struct ResultType<M, L, R> { struct in namespace:pdfium::base::internal
388 struct ResultType { struct in namespace:pdfium::base::internal
390 typename ResultType<M, typename ResultType<M, L, R>::type, Args...>::type;
417 CheckedNumeric<typename ResultType<M, L, R, Args...>::type>
429 CheckedNumeric<typename ResultType<Checked##NAME##Op, L, R, Args...>::type> \
/external/clang/lib/CodeGen/
H A DCGCXXABI.cpp189 RValue RV, QualType ResultType) {
190 CGF.EmitReturnOfRValue(RV, ResultType);
188 EmitReturnFromThunk(CodeGenFunction &CGF, RValue RV, QualType ResultType) argument
H A DCodeGenTypes.cpp354 llvm::Type *ResultType = nullptr; local
359 ResultType = llvm::StructType::get(getLLVMContext());
364 ResultType = GetFunctionType(*FI);
375 return ResultType;
395 llvm::Type *ResultType = nullptr;
414 ResultType = llvm::Type::getInt8Ty(getLLVMContext());
419 ResultType = llvm::Type::getInt1Ty(getLLVMContext());
438 ResultType = llvm::IntegerType::get(getLLVMContext(),
444 ResultType =
453 ResultType
[all...]
H A DCGVTables.cpp84 QualType ResultType, RValue RV,
87 bool NullCheckValue = !ResultType->isReferenceType();
105 auto ClassDecl = ResultType->getPointeeType()->getAsCXXRecordDecl();
149 QualType ResultType = FPT->getReturnType(); local
198 RV = PerformReturnAdjustment(*this, ResultType, RV, Thunk);
218 QualType ResultType = CGM.getCXXABI().HasThisReturn(GD) local
232 CGM.getCXXABI().addImplicitStructorParams(*this, ResultType, FunctionArgs);
235 StartFunction(GlobalDecl(), ResultType, Fn, FnInfo, FunctionArgs, local
310 QualType ResultType = CGM.getCXXABI().HasThisReturn(CurGD) local
316 if (!ResultType
83 PerformReturnAdjustment(CodeGenFunction &CGF, QualType ResultType, RValue RV, const ThunkInfo &Thunk) argument
[all...]
H A DCGCall.cpp363 CanQualType ResultType = TheCXXABI.HasThisReturn(GD) local
372 return arrangeLLVMFunctionInfo(ResultType, /*instanceMethod=*/true,
1432 bool CodeGenModule::ReturnTypeUsesFPRet(QualType ResultType) {
1433 if (const BuiltinType *BT = ResultType->getAs<BuiltinType>()) {
1449 bool CodeGenModule::ReturnTypeUsesFP2Ret(QualType ResultType) {
1450 if (const ComplexType *CT = ResultType->getAs<ComplexType>()) {
H A DCGStmt.cpp2042 llvm::Type *ResultType; local
2044 ResultType = VoidTy;
2046 ResultType = ResultRegTypes[0];
2048 ResultType = llvm::StructType::get(getLLVMContext(), ResultRegTypes);
2051 llvm::FunctionType::get(ResultType, ArgTypes, false);
H A DCGObjC.cpp200 QualType ResultType = E->getType(); local
202 = ResultType->getAsObjCInterfacePointerType();
427 QualType ResultType = method ? method->getReturnType() : E->getType(); local
454 result = Runtime.GenerateMessageSendSuper(*this, Return, ResultType,
463 result = Runtime.GenerateMessageSend(*this, Return, ResultType,
H A DCGExprScalar.cpp1910 llvm::Type* ResultType = ConvertType(E->getType()); local
1911 llvm::Value* Result = llvm::Constant::getNullValue(ResultType);
1922 Idx = Builder.CreateIntCast(Idx, ResultType, IdxSigned, "conv");
1929 llvm::Value* ElemSize = llvm::ConstantInt::get(ResultType,
1956 Offset = llvm::ConstantInt::get(ResultType, OffsetInt);
1982 Offset = llvm::ConstantInt::get(ResultType, OffsetInt.getQuantity());
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixPower.h59 template<typename ResultType>
60 inline void evalTo(ResultType& res) const
98 typedef Block<MatrixType,Dynamic,Dynamic> ResultType; typedef in class:Eigen::MatrixPowerAtomic
103 void computePade(int degree, const MatrixType& IminusT, ResultType& res) const;
104 void compute2x2(ResultType& res, RealScalar p) const;
105 void computeBig(ResultType& res) const;
132 void compute(ResultType& res) const;
144 void MatrixPowerAtomic<MatrixType>::compute(ResultType& res) const
162 void MatrixPowerAtomic<MatrixType>::computePade(int degree, const MatrixType& IminusT, ResultType& res) const
176 void MatrixPowerAtomic<MatrixType>::compute2x2(ResultType
[all...]
/external/gemmlowp/test/
H A Dbenchmark.cc69 template <typename LhsType, typename RhsType, typename ResultType>
88 std::vector<ResultType> result(pool_size * gemms.size());
137 template <typename LhsType, typename RhsType, typename ResultType>
141 time_for_gemms<LhsType, RhsType, ResultType>(context, gemms);
172 typedef Matrix<std::uint8_t, MapOrder::ColMajor> ResultType; typedef
188 gflops_for_gemms<LhsType, RhsType, ResultType>(context, unique_gemm);
216 typedef Matrix<std::uint8_t, MapOrder::ColMajor> ResultType; typedef
229 time_for_gemms<LhsType, RhsType, ResultType>(context, gemms));
H A Dtest.cc364 typename ResultType>
366 const RhsType& rhs, ResultType* result, int lhs_offset,
380 typedef typename ResultType::Scalar Scalar;
383 static const MapOrder kResultOrder = ResultType::kOrder;
384 ResultType ref_result(rows, cols);
471 typename ResultType>
473 const RhsType& rhs, ResultType* result, int lhs_offset,
495 typedef Matrix<Scalar, ResultOrder> ResultType; typedef
496 ResultType result(rows, cols);
/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.cpp1139 QualType ResultType; local
1142 ResultType = PTy->getPointeeType();
1148 CheckKeyForObjCARCConversion(S, ResultType,
1154 if (ResultType.isNull()) {
1176 AtIndexGetter = S.LookupMethodInObjectType(AtIndexGetterSelector, ResultType,
1245 QualType ResultType; local
1248 ResultType = PTy->getPointeeType();
1255 CheckKeyForObjCARCConversion(S, ResultType,
1261 if (ResultType.isNull()) {
1284 AtIndexSetter = S.LookupMethodInObjectType(AtIndexSetterSelector, ResultType,
[all...]
H A DSemaCast.cpp53 ResultType(destType.getNonLValueExprType(S.Context)),
68 QualType ResultType; member in struct:__anon1422::CastOperation
260 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType,
271 return Op.complete(CXXDynamicCastExpr::Create(Context, Op.ResultType,
283 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType,
296 return Op.complete(CXXStaticCastExpr::Create(Context, Op.ResultType,
2611 return Op.complete(CStyleCastExpr::Create(Context, Op.ResultType,
2635 return Op.complete(CXXFunctionalCastExpr::Create(Context, Op.ResultType,
/external/llvm/lib/IR/
H A DIRBuilder.cpp439 Type *ResultType,
443 Type *Types[] = {ResultType};
453 Type *ResultType,
456 Type *Types[] = {ResultType};
438 CreateGCResult(Instruction *Statepoint, Type *ResultType, const Twine &Name) argument
450 CreateGCRelocate(Instruction *Statepoint, int BaseOffset, int DerivedOffset, Type *ResultType, const Twine &Name) argument
/external/eigen/Eigen/src/Geometry/
H A DTransform.h440 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const typename internal::transform_right_product_impl<Transform, OtherDerived>::ResultType
452 EIGEN_DEVICE_FUNC inline const typename internal::transform_left_product_impl<OtherDerived,Mode,Options,_Dim,_Dim+1>::ResultType
505 // Eigen::Transform<double, 3, Mode, Options>, <expression>>::ResultType (const Eigen::Transform<double, 3, Mode, Options> &) const")
510 typedef typename ProductType::ResultType ResultType; typedef in struct:Eigen::Transform::icc_11_workaround
516 inline typename icc_11_workaround<OtherMode,OtherOptions>::ResultType
525 EIGEN_DEVICE_FUNC inline typename internal::transform_transform_product_impl<Transform,Transform<Scalar,Dim,OtherMode,OtherOptions> >::ResultType
1313 typedef typename MatrixType::PlainObject ResultType; typedef in struct:Eigen::internal::transform_right_product_impl
1315 static EIGEN_STRONG_INLINE ResultType run(const TransformType& T, const MatrixType& other)
1331 typedef typename MatrixType::PlainObject ResultType; typedef in struct:Eigen::internal::transform_right_product_impl
1357 typedef typename MatrixType::PlainObject ResultType; typedef in struct:Eigen::internal::transform_right_product_impl
1382 typedef typename MatrixType::PlainObject ResultType; typedef in struct:Eigen::internal::transform_right_product_impl
1405 typedef Transform<typename Other::Scalar,Dim,Projective,Options> ResultType; typedef in struct:Eigen::internal::transform_left_product_impl
1416 typedef Transform<typename Other::Scalar,Dim,Projective,Options> ResultType; typedef in struct:Eigen::internal::transform_left_product_impl
1432 typedef TransformType ResultType; typedef in struct:Eigen::internal::transform_left_product_impl
1448 typedef TransformType ResultType; typedef in struct:Eigen::internal::transform_left_product_impl
1464 typedef TransformType ResultType; typedef in struct:Eigen::internal::transform_left_product_impl
1486 typedef Transform<Scalar,Dim,ResultMode,LhsOptions> ResultType; typedef in struct:Eigen::internal::transform_transform_product_impl
1502 typedef Transform<Scalar,Dim,Projective> ResultType; typedef in struct:Eigen::internal::transform_transform_product_impl
1514 typedef Transform<Scalar,Dim,Projective> ResultType; typedef in struct:Eigen::internal::transform_transform_product_impl
1529 typedef Transform<Scalar,Dim,Projective> ResultType; typedef in struct:Eigen::internal::transform_transform_product_impl
[all...]
/external/skia/src/core/
H A DSkStroke.cpp174 enum ResultType { enum in class:SkPathStroker
203 ResultType compareQuadConic(const SkConic& , SkQuadConstruct* ) const;
204 ResultType compareQuadCubic(const SkPoint cubic[4], SkQuadConstruct* );
205 ResultType compareQuadQuad(const SkPoint quad[3], SkQuadConstruct* );
217 ResultType intersectRay(SkQuadConstruct* , IntersectRayType STROKER_DEBUG_PARAMS(int) ) const;
233 ResultType strokeCloseEnough(const SkPoint stroke[3], const SkPoint ray[2],
235 ResultType tangentsMeet(const SkPoint cubic[4], SkQuadConstruct* );
872 SkPathStroker::ResultType SkPathStroker::intersectRay(SkQuadConstruct* quadPts,
927 SkPathStroker::ResultType SkPathStroker::tangentsMeet(const SkPoint cubic[4],
989 SkPathStroker::ResultType SkPathStroke
[all...]
/external/clang/lib/AST/
H A DMicrosoftMangle.cpp1872 QualType ResultType = T->getReturnType(); local
1874 dyn_cast_or_null<AutoType>(ResultType->getContainedAutoType())) {
1876 mangleQualifiers(ResultType.getLocalQualifiers(), /*IsMember=*/false);
1885 if (ResultType->isVoidType())
1886 ResultType = ResultType.getUnqualifiedType();
1887 mangleType(ResultType, Range, QMM_Result);
/external/clang/test/SemaCXX/
H A Dtypo-correction.cpp382 enum ResultType { enum in class:class_member_typo_corrections::Result
388 ResultType type();
402 enum ResultType { enum in class:class_member_typo_corrections::Figure
409 ResultType type();
/external/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp74 IRBuilder<> &Builder, Type *ResultType, Value *Addr,
854 Instruction *I, Type *ResultType, Value *Addr, AtomicOrdering MemOpOrder,
858 insertRMWLLSCLoop(Builder, ResultType, Addr, MemOpOrder, PerformOp);
853 expandAtomicOpToLLSC( Instruction *I, Type *ResultType, Value *Addr, AtomicOrdering MemOpOrder, function_ref<Value *(IRBuilder<> &, Value *)> PerformOp) argument
/external/deqp/modules/gles3/performance/
H A Des3pBufferDataUploadTests.cpp2190 enum ResultType enum in class:deqp::gles3::Performance::__anon4585::BasicUploadCase
2204 ResultType resultType,
2225 const ResultType m_resultType;
2245 BasicUploadCase<SampleType>::BasicUploadCase (Context& context, const char* name, const char* desc, int bufferSizeMin, int bufferSizeMax, int numSamples, deUint32 bufferUsage, CaseType caseType, ResultType resultType, int flags)
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-matchers.h1839 typedef typename Functor::result_type ResultType; typedef in struct:testing::internal::CallableTraits
1844 static ResultType Invoke(Functor f, T arg) { return f(arg); }
1850 typedef ResType ResultType; typedef in struct:testing::internal::CallableTraits
1868 typedef typename CallableTraits<Callable>::ResultType ResultType; typedef in class:testing::internal::ResultOfMatcher
1870 ResultOfMatcher(Callable callable, const Matcher<ResultType>& matcher)
1886 Impl(CallableStorageType callable, const Matcher<ResultType>& matcher)
1903 ResultType result =
1915 const Matcher<ResultType> matcher_;
1921 const Matcher<ResultType> matcher
[all...]
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp1635 Type *ResultType = Cast0->getType(); local
1637 return ConstantExpr::getCast(CastOpc, V, ResultType);
1639 return ConstantExpr::getCast(CastOpc, V, ResultType);

Completed in 553 milliseconds

123