Searched refs:ArrType (Results 1 – 4 of 4) sorted by relevance
/external/eigen/unsupported/Eigen/CXX11/src/util/ |
D | CXX11Meta.h | 485 template<class InstType, typename ArrType, std::size_t N, bool Reverse, typename... Ps> 488 template<class InstType, typename ArrType, std::size_t N, typename... Ps> 489 struct h_instantiate_by_c_array<InstType, ArrType, N, false, Ps...> 491 static InstType run(ArrType* arr, Ps... args) 493 …return h_instantiate_by_c_array<InstType, ArrType, N - 1, false, Ps..., ArrType>::run(arr + 1, arg… 497 template<class InstType, typename ArrType, std::size_t N, typename... Ps> 498 struct h_instantiate_by_c_array<InstType, ArrType, N, true, Ps...> 500 static InstType run(ArrType* arr, Ps... args) 502 …return h_instantiate_by_c_array<InstType, ArrType, N - 1, false, ArrType, Ps...>::run(arr + 1, arr… 506 template<class InstType, typename ArrType, typename... Ps> [all …]
|
/external/eigen/unsupported/test/ |
D | cxx11_tensor_symmetry.cpp | 50 template<typename ArrType> 51 …static inline int doCheck_(ArrType e, int flags, int dummy, std::set<uint64_t>& found, std::map<ui… in doCheck_()
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 2271 const QualType ArrType = Context.getBaseElementType(T); in BuildArrayType() local 2272 if (ArrType->isBlockPointerType() || ArrType->isPipeType() || in BuildArrayType() 2273 ArrType->isSamplerT() || ArrType->isImageType()) { in BuildArrayType() 2274 Diag(Loc, diag::err_opencl_invalid_type_array) << ArrType; in BuildArrayType()
|
/external/clang/lib/CodeGen/ |
D | MicrosoftCXXABI.cpp | 3528 auto *ArrType = llvm::ArrayType::get(PtrType, Classes.size() + 1); in getBaseClassArray() local 3530 new llvm::GlobalVariable(Module, ArrType, in getBaseClassArray() 3542 BCA->setInitializer(llvm::ConstantArray::get(ArrType, BaseClassArrayData)); in getBaseClassArray()
|