Home
last modified time | relevance | path

Searched refs:ElType (Results 1 – 14 of 14) sorted by relevance

/external/llvm/include/llvm/IR/
DDerivedTypes.h320 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/
DDerivedTypes.h324 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/
DDerivedTypes.h385 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/
DStaticAccessedThroughInstanceCheck.cpp20 if (const ElaboratedType *ElType = QType->getAs<ElaboratedType>()) { in getNameSpecifierNestingLevel() local
21 const NestedNameSpecifier *NestedSpecifiers = ElType->getQualifier(); in getNameSpecifierNestingLevel()
/external/llvm-project/llvm/lib/IR/
DType.cpp564 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/
DType.cpp584 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/
DType.cpp603 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/
DDerivedTypes.h368 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/
DSemaExprCXX.cpp3634 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/
DSemaExprCXX.cpp4363 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/
DMemorySanitizer.cpp3688 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/
DMemorySanitizer.cpp4032 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/
DARMISelLowering.cpp8265 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/
DARMISelLowering.cpp8571 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()