/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/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | DerivedTypes.h | 385 SequentialType(TypeID TID, Type *ElType, uint64_t NumElements) in SequentialType() argument 386 : CompositeType(ElType->getContext(), TID), ContainedType(ElType), in SequentialType() 409 ArrayType(Type *ElType, uint64_t NumEl); 446 VectorType(Type *ElType, unsigned NumEl, bool Scalable = false); 447 VectorType(Type *ElType, ElementCount EC); 580 explicit PointerType(Type *ElType, unsigned AddrSpace);
|
/external/llvm-project/clang-tools-extra/clang-tidy/readability/ |
D | StaticAccessedThroughInstanceCheck.cpp | 20 if (const ElaboratedType *ElType = QType->getAs<ElaboratedType>()) { in getNameSpecifierNestingLevel() local 21 const NestedNameSpecifier *NestedSpecifiers = ElType->getQualifier(); in getNameSpecifierNestingLevel()
|
/external/llvm-project/llvm/lib/IR/ |
D | Type.cpp | 564 ArrayType::ArrayType(Type *ElType, uint64_t NumEl) in ArrayType() argument 565 : Type(ElType->getContext(), ArrayTyID), ContainedType(ElType), in ArrayType() 593 VectorType::VectorType(Type *ElType, unsigned EQ, Type::TypeID TID) in VectorType() argument 594 : Type(ElType->getContext(), TID), ContainedType(ElType), in VectorType()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Type.cpp | 584 ArrayType::ArrayType(Type *ElType, uint64_t NumEl) in ArrayType() argument 585 : SequentialType(ArrayTyID, ElType, NumEl) {} in ArrayType() 611 VectorType::VectorType(Type *ElType, ElementCount EC) in VectorType() argument 612 : SequentialType(VectorTyID, ElType, EC.Min), Scalable(EC.Scalable) {} in VectorType()
|
/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/llvm-project/llvm/include/llvm/IR/ |
D | DerivedTypes.h | 368 ArrayType(Type *ElType, uint64_t NumEl); 421 VectorType(Type *ElType, unsigned EQ, Type::TypeID TID); 662 explicit PointerType(Type *ElType, unsigned AddrSpace);
|
/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()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 4363 QualType ElType = ToComplex->getElementType(); in PerformImplicitConversion() local 4364 bool isFloatingComplex = ElType->isRealFloatingType(); in PerformImplicitConversion() 4367 if (Context.hasSameUnqualifiedType(ElType, From->getType())) { in PerformImplicitConversion() 4370 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 4374 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 4385 QualType ElType = FromComplex->getElementType(); in PerformImplicitConversion() local 4386 bool isFloatingComplex = ElType->isRealFloatingType(); in PerformImplicitConversion() 4389 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 4395 if (Context.hasSameUnqualifiedType(ElType, ToType)) { in PerformImplicitConversion()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | MemorySanitizer.cpp | 3688 Type *ElType = OpType->getPointerElementType(); in instrumentAsmArgument() local 3689 if (!ElType->isSized()) in instrumentAsmArgument() 3691 int Size = DL.getTypeStoreSize(ElType); in instrumentAsmArgument()
|
/external/llvm-project/llvm/lib/Transforms/Instrumentation/ |
D | MemorySanitizer.cpp | 4032 Type *ElType = OpType->getPointerElementType(); in instrumentAsmArgument() local 4033 if (!ElType->isSized()) in instrumentAsmArgument() 4035 int Size = DL.getTypeStoreSize(ElType); in instrumentAsmArgument()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 8265 MVT ElType = getVectorTyFromPredicateVector(VT).getScalarType().getSimpleVT(); in LowerCONCAT_VECTORS_i1() local 8272 EVT ConcatVT = MVT::getVectorVT(ElType, NumElts); in LowerCONCAT_VECTORS_i1() 8340 MVT ElType = getVectorTyFromPredicateVector(VT).getScalarType().getSimpleVT(); in LowerEXTRACT_SUBVECTOR() local 8342 EVT SubVT = MVT::getVectorVT(ElType, NumElts); in LowerEXTRACT_SUBVECTOR()
|
/external/llvm-project/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 8571 MVT ElType = getVectorTyFromPredicateVector(VT).getScalarType().getSimpleVT(); in LowerCONCAT_VECTORS_i1() local 8578 EVT ConcatVT = MVT::getVectorVT(ElType, NumElts); in LowerCONCAT_VECTORS_i1() 8646 MVT ElType = getVectorTyFromPredicateVector(VT).getScalarType().getSimpleVT(); in LowerEXTRACT_SUBVECTOR() local 8648 EVT SubVT = MVT::getVectorVT(ElType, NumElts); in LowerEXTRACT_SUBVECTOR()
|