Searched refs:ElType (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | DerivedTypes.h | 311 SequentialType(TypeID TID, Type *ElType) in SequentialType() argument 312 : CompositeType(ElType->getContext(), TID), ContainedType(ElType) { in SequentialType() 337 ArrayType(Type *ElType, uint64_t NumEl); 364 VectorType(Type *ElType, unsigned NumEl); 428 explicit PointerType(Type *ElType, unsigned AddrSpace);
|
/external/llvm/include/llvm/IR/ |
D | DerivedTypes.h | 320 SequentialType(TypeID TID, Type *ElType) in SequentialType() argument 321 : CompositeType(ElType->getContext(), TID), ContainedType(ElType) { in SequentialType() 343 ArrayType(Type *ElType, uint64_t NumEl); 370 VectorType(Type *ElType, unsigned NumEl); 446 explicit PointerType(Type *ElType, unsigned AddrSpace);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | DerivedTypes.h | 324 SequentialType(TypeID TID, Type *ElType, uint64_t NumElements) in SequentialType() argument 325 : CompositeType(ElType->getContext(), TID), ContainedType(ElType), in SequentialType() 346 ArrayType(Type *ElType, uint64_t NumEl); 370 VectorType(Type *ElType, unsigned NumEl); 444 explicit PointerType(Type *ElType, unsigned AddrSpace);
|
/external/llvm/lib/IR/ |
D | Type.cpp | 603 ArrayType::ArrayType(Type *ElType, uint64_t NumEl) in ArrayType() argument 604 : SequentialType(ArrayTyID, ElType) { in ArrayType() 630 VectorType::VectorType(Type *ElType, unsigned NumEl) in VectorType() argument 631 : SequentialType(VectorTyID, ElType) { in VectorType()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Type.cpp | 618 ArrayType::ArrayType(Type *ElType, uint64_t NumEl) in ArrayType() argument 619 : SequentialType(ArrayTyID, ElType) { in ArrayType() 646 VectorType::VectorType(Type *ElType, unsigned NumEl) in VectorType() argument 647 : SequentialType(VectorTyID, ElType) { in VectorType()
|
/external/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 3634 QualType ElType = ToComplex->getElementType(); in PerformImplicitConversion() local 3635 bool isFloatingComplex = ElType->isRealFloatingType(); in PerformImplicitConversion() 3638 if (Context.hasSameUnqualifiedType(ElType, From->getType())) { in PerformImplicitConversion() 3641 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 3645 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 3658 QualType ElType = FromComplex->getElementType(); in PerformImplicitConversion() local 3659 bool isFloatingComplex = ElType->isRealFloatingType(); in PerformImplicitConversion() 3662 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 3668 if (Context.hasSameUnqualifiedType(ElType, ToType)) { in PerformImplicitConversion()
|