Home
last modified time | relevance | path

Searched refs:OtherType (Results 1 – 15 of 15) sorted by relevance

/external/eigen/Eigen/src/Core/products/
DSelfadjointProduct.h47 template<typename MatrixType, typename OtherType, int UpLo, bool OtherIsVector = OtherType::IsVecto…
50 template<typename MatrixType, typename OtherType, int UpLo>
51 struct selfadjoint_product_selector<MatrixType,OtherType,UpLo,true>
53 static void run(MatrixType& mat, const OtherType& other, const typename MatrixType::Scalar& alpha)
56 typedef internal::blas_traits<OtherType> OtherBlasTraits;
67 …internal::gemv_static_vector_if<Scalar,OtherType::SizeAtCompileTime,OtherType::MaxSizeAtCompileTim…
82 template<typename MatrixType, typename OtherType, int UpLo>
83 struct selfadjoint_product_selector<MatrixType,OtherType,UpLo,false>
85 static void run(MatrixType& mat, const OtherType& other, const typename MatrixType::Scalar& alpha)
88 typedef internal::blas_traits<OtherType> OtherBlasTraits;
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dperformance-unnecessary-value-param-allowed-types.cpp35 struct OtherType { struct
36 ~OtherType();
69 void positiveOtherType(OtherType O) { in positiveOtherType()
Dperformance-unnecessary-copy-initialization-allowed-types.cpp35 struct OtherType { struct
36 ~OtherType();
53 const OtherType &getOtherType();
Dperformance-for-range-copy-allowed-types.cpp56 struct OtherType { struct
57 ~OtherType();
115 for (auto O : View<Iterator<OtherType>>()) { in positiveOtherType()
/external/angle/src/common/
Dvector_utils.h93 template <size_t CurrentIndex, size_t OtherDimension, typename OtherType, typename... Args>
94 void initWithList(const Vector<OtherDimension, OtherType> &arg1, const Args &... args);
99 template <size_t CurrentIndex, typename OtherType, typename... Args>
100 typename std::enable_if<std::is_arithmetic<OtherType>::value>::type initWithList(
101 OtherType arg1,
218 template <size_t CurrentIndex, size_t OtherDimension, typename OtherType, typename... Args>
219 void VectorBase<Dimension, Type>::initWithList(const Vector<OtherDimension, OtherType> &arg1, in initWithList()
232 template <size_t CurrentIndex, typename OtherType, typename... Args>
233 typename std::enable_if<std::is_arithmetic<OtherType>::value>::type
234 VectorBase<Dimension, Type>::initWithList(OtherType arg1, const Args &... args) in initWithList()
/external/clang/test/Index/
Dprint-type.c8 typedef double OtherType; typedef
Dprint-type.cpp25 typedef double OtherType; typedef
/external/llvm-project/clang/test/Index/
Dprint-type.c8 typedef double OtherType; typedef
Dprint-type.cpp26 typedef double OtherType; typedef
/external/pdfium/core/fxcrt/
Dfx_coordinates.h73 template <typename OtherType>
74 CFX_STemplate<OtherType> As() const { in As()
75 return CFX_STemplate<OtherType>(static_cast<OtherType>(width), in As()
76 static_cast<OtherType>(height)); in As()
/external/llvm/include/llvm/Analysis/
DMemoryDependenceAnalysis.h95 enum OtherType { enum
112 PointerSumTypeMember<Other, PointerEmbeddedInt<OtherType, 3>>>
/external/llvm-project/llvm/include/llvm/Analysis/
DMemoryDependenceAnalysis.h104 enum OtherType { enum
121 PointerSumTypeMember<Other, PointerEmbeddedInt<OtherType, 3>>>;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DMemoryDependenceAnalysis.h104 enum OtherType { enum
121 PointerSumTypeMember<Other, PointerEmbeddedInt<OtherType, 3>>>;
/external/llvm-project/clang-tools-extra/clang-tidy/readability/
DImplicitBoolConversionCheck.cpp180 ASTContext &Context, StringRef OtherType) { in fixGenericExprCastFromBool() argument
186 (Twine("static_cast<") + OtherType + ">" + (NeedParens ? "(" : "")) in fixGenericExprCastFromBool()
/external/llvm-project/clang/lib/Sema/
DSemaExpr.cpp10009 QualType OtherType = LHSVecType ? RHSType : LHSType; in CheckVectorOperands() local
10011 if (isLaxVectorConversion(OtherType, VecType)) { in CheckVectorOperands()
10023 } else if (OtherType->isExtVectorType() || OtherType->isVectorType() || in CheckVectorOperands()
10024 (OtherType->isScalarType() && VT->getNumElements() == 1)) { in CheckVectorOperands()