/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/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/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-7.0/llvm/include/llvm/IR/ |
D | DerivedTypes.h | 348 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/ |
D | Type.cpp | 565 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/ |
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()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/ |
D | MemorySanitizer.cpp | 3219 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()
|