Searched defs:VectorType (Results 1 - 7 of 7) sorted by relevance

/external/llvm/include/llvm/
H A DPassAnalysisSupport.h39 typedef SmallVector<AnalysisID, 32> VectorType; typedef in class:llvm::AnalysisUsage
43 VectorType Required, RequiredTransitive, Preserved;
108 const VectorType &getRequiredSet() const { return Required; }
109 const VectorType &getRequiredTransitiveSet() const {
112 const VectorType &getPreservedSet() const { return Preserved; }
H A DDerivedTypes.h144 /// and VectorType.
361 /// VectorType - Class to represent vector types.
363 class VectorType : public SequentialType { class in namespace:llvm
366 VectorType(const VectorType &); // Do not implement
367 const VectorType &operator=(const VectorType &); // Do not implement
368 VectorType(Type *ElType, unsigned NumEl);
370 /// VectorType::get - This static method is the primary way to construct an
371 /// VectorType
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DArgList.h38 typedef Vector<Register, inlineCapacity> VectorType; typedef in class:JSC::MarkedArgumentBuffer
42 typedef VectorType::iterator iterator;
43 typedef VectorType::const_iterator const_iterator;
153 VectorType m_vector;
/external/llvm/lib/VMCore/
H A DPass.cpp250 typedef AnalysisUsage::VectorType VectorType; typedef in struct:__anon9173::GetCFGOnlyPasses
251 VectorType &CFGOnlyList;
252 GetCFGOnlyPasses(VectorType &L) : CFGOnlyList(L) {}
H A DType.cpp45 if (VectorType *VTy = dyn_cast<VectorType>(this))
63 return cast<VectorType>(this)->getElementType()->isIntegerTy();
76 return cast<VectorType>(this)->getElementType()->isFloatingPointTy();
94 if (const VectorType *thisPTy = dyn_cast<VectorType>(this)) {
95 if (const VectorType *thatPTy = dyn_cast<VectorType>(Ty))
103 if (const VectorType *thatPTy = dyn_cast<VectorType>(T
726 VectorType::VectorType(Type *ElType, unsigned NumEl) function in class:VectorType
[all...]
/external/clang/lib/AST/
H A DType.cpp150 VectorType::VectorType(QualType vecType, unsigned nElements, QualType canonType, function in class:VectorType
162 VectorType::VectorType(TypeClass tc, QualType vecType, unsigned nElements, function in class:VectorType
561 AutoType *VisitVectorType(const VectorType *T) {
581 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
717 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
757 if (const VectorType *V
[all...]
/external/clang/include/clang/AST/
H A DType.h1287 friend class VectorType;
2412 /// VectorType - GCC generic vector type. This type is created using
2417 class VectorType : public Type, public llvm::FoldingSetNode { class in namespace:clang
2431 VectorType(QualType vecType, unsigned nElements, QualType canonType,
2434 VectorType(TypeClass tc, QualType vecType, unsigned nElements,
2467 static bool classof(const VectorType *) { return true; }
2475 class ExtVectorType : public VectorType {
2477 VectorType(ExtVector, vecType, nElements, canonType, GenericVector) {}
3270 /// - the equivalent type is VectorType(16, int32_t)
3271 /// - the canonical type is VectorType(1
[all...]

Completed in 394 milliseconds