Home
last modified time | relevance | path

Searched refs:VType (Results 1 – 7 of 7) sorted by relevance

/external/google-benchmark/src/
Dstat.h12 template <typename VType, typename NumType>
15 template <typename VType, typename NumType>
23 template <typename VType>
25 template <typename VType>
27 template <typename VType>
30 template <typename VType, typename NumType>
33 typedef Stat1<VType, NumType> Self;
37 explicit Stat1(const VType &dat) { in Stat1()
44 explicit Stat1(const VType *begin, const VType *end) { in Stat1()
46 for (const VType *item = begin; item < end; ++item) { in Stat1()
[all …]
/external/libcxxabi/test/
Dcatch_multi_level_pointer.pass.cpp73 typedef Tp volatile* VType; typedef
83 typedef volatile Member (Class::*VType);
94 typedef typename ThrowTypes::VType VType; in operator ()() typedef
99 run_catch_tests<VType>(); in operator ()()
107 typedef typename CatchTypes::VType VType; in run_catch_tests() typedef
112 catch_pointer_test<ThrowTp, VType>(); in run_catch_tests()
117 generate_tests_imp<ThrowTp, VType, level-1>()(); in run_catch_tests()
/external/eigen/Eigen/src/Core/products/
DSelfadjointRank2Update.h21 template<typename Scalar, typename Index, typename UType, typename VType, int UpLo>
24 template<typename Scalar, typename Index, typename UType, typename VType>
25 struct selfadjoint_rank2_update_selector<Scalar,Index,UType,VType,Lower>
27 static void run(Scalar* mat, Index stride, const UType& u, const VType& v, const Scalar& alpha)
39 template<typename Scalar, typename Index, typename UType, typename VType>
40 struct selfadjoint_rank2_update_selector<Scalar,Index,UType,VType,Upper>
42 static void run(Scalar* mat, Index stride, const UType& u, const VType& v, const Scalar& alpha)
/external/llvm/lib/Transforms/Vectorize/
DBBVectorize.cpp997 Type *VType = getVecTypeForPair(aTypeI, aTypeJ); in areInstsCompatible() local
1004 unsigned VecAlignment = DL.getPrefTypeAlignment(VType); in areInstsCompatible()
1014 unsigned VCost = TTI->getMemoryOpCost(I->getOpcode(), VType, in areInstsCompatible()
1020 VCost += TTI->getAddressComputationCost(VType); in areInstsCompatible()
1028 unsigned VParts = TTI->getNumberOfParts(VType); in areInstsCompatible()
2829 VectorType *VType = getVecTypeForPair(IType, JType); in replaceOutputsOfPair() local
2830 unsigned numElem = VType->getNumElements(); in replaceOutputsOfPair()
2842 K1 = new ShuffleVectorInst(K, UndefValue::get(VType), in replaceOutputsOfPair()
2857 K2 = new ShuffleVectorInst(K, UndefValue::get(VType), in replaceOutputsOfPair()
/external/clang/lib/Sema/
DSemaOpenMP.cpp3818 QualType VType = LastIteration.get()->getType(); in CheckOpenMPLoop() local
3824 VarDecl *LBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.lb"); in CheckOpenMPLoop()
3825 LB = buildDeclRefExpr(SemaRef, LBDecl, VType, InitLoc); in CheckOpenMPLoop()
3831 VarDecl *UBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.ub"); in CheckOpenMPLoop()
3832 UB = buildDeclRefExpr(SemaRef, UBDecl, VType, InitLoc); in CheckOpenMPLoop()
3847 VarDecl *STDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.stride"); in CheckOpenMPLoop()
3848 ST = buildDeclRefExpr(SemaRef, STDecl, VType, InitLoc); in CheckOpenMPLoop()
3868 VarDecl *IVDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.iv"); in CheckOpenMPLoop()
3869 IV = buildDeclRefExpr(SemaRef, IVDecl, VType, InitLoc); in CheckOpenMPLoop()
DSemaInit.cpp637 } else if (const VectorType *VType = ILE->getType()->getAs<VectorType>()) { in FillInEmptyInitializations() local
638 ElementType = VType->getElementType(); in FillInEmptyInitializations()
639 NumElements = VType->getNumElements(); in FillInEmptyInitializations()
2585 } else if (const VectorType *VType = CurrentObjectType->getAs<VectorType>()) in getStructuredSubobjectInit() local
2586 NumElements = VType->getNumElements(); in getStructuredSubobjectInit()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp1191 llvm::VectorType *VType = in VisitInitListExpr() local
1194 if (!VType) { in VisitInitListExpr()
1203 unsigned ResElts = VType->getNumElements(); in VisitInitListExpr()
1212 llvm::Value *V = llvm::UndefValue::get(VType); in VisitInitListExpr()
1329 llvm::Type *EltTy = VType->getElementType(); in VisitInitListExpr()