Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/include/llvm/
DDerivedTypes.h311 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/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/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-7.0/llvm/include/llvm/IR/
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);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DType.cpp565 ArrayType::ArrayType(Type *ElType, uint64_t NumEl) in ArrayType() argument
566 : SequentialType(ArrayTyID, ElType, NumEl) {} in ArrayType()
590 VectorType::VectorType(Type *ElType, unsigned NumEl) in VectorType() argument
591 : SequentialType(VectorTyID, ElType, NumEl) {} 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/swiftshader/third_party/LLVM/lib/VMCore/
DType.cpp618 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/
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/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
DMemorySanitizer.cpp3219 Type *ElType = OpType->getPointerElementType(); in visitAsmInstruction() local
3220 if (!ElType->isSized()) in visitAsmInstruction()
3224 Operand, IRB, ElType, /*Alignment*/ 1, /*isStore*/ true); in visitAsmInstruction()
3225 Value *CShadow = getCleanShadow(ElType); in visitAsmInstruction()