Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DDerivedTypes.h348 SequentialType(TypeID TID, Type *ElType, uint64_t NumElements) in SequentialType() argument
349 : CompositeType(ElType->getContext(), TID), ContainedType(ElType), in SequentialType()
370 ArrayType(Type *ElType, uint64_t NumEl);
394 VectorType(Type *ElType, unsigned NumEl);
468 explicit PointerType(Type *ElType, unsigned AddrSpace);
/freebsd-12.1/contrib/llvm/lib/IR/
H A DType.cpp578 ArrayType::ArrayType(Type *ElType, uint64_t NumEl) in ArrayType() argument
579 : SequentialType(ArrayTyID, ElType, NumEl) {} in ArrayType()
603 VectorType::VectorType(Type *ElType, unsigned NumEl) in VectorType() argument
604 : SequentialType(VectorTyID, ElType, NumEl) {} in VectorType()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprCXX.cpp4182 QualType ElType = ToComplex->getElementType(); in PerformImplicitConversion() local
4183 bool isFloatingComplex = ElType->isRealFloatingType(); in PerformImplicitConversion()
4186 if (Context.hasSameUnqualifiedType(ElType, From->getType())) { in PerformImplicitConversion()
4189 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion()
4193 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion()
4206 QualType ElType = FromComplex->getElementType(); in PerformImplicitConversion() local
4207 bool isFloatingComplex = ElType->isRealFloatingType(); in PerformImplicitConversion()
4210 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion()
4216 if (Context.hasSameUnqualifiedType(ElType, ToType)) { in PerformImplicitConversion()
/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp3538 Type *ElType = OpType->getPointerElementType(); in instrumentAsmArgument() local
3539 if (!ElType->isSized()) in instrumentAsmArgument()
3541 int Size = DL.getTypeStoreSize(ElType); in instrumentAsmArgument()