HomeSort by relevance Sort by last modified time
    Searched refs:PointerType (Results 1 - 25 of 294) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/CodeGen/
CGOpenCLRuntime.cpp 44 return llvm::PointerType::get(llvm::StructType::create(
47 return llvm::PointerType::get(llvm::StructType::create(
50 return llvm::PointerType::get(llvm::StructType::create(
53 return llvm::PointerType::get(llvm::StructType::create(
56 return llvm::PointerType::get(llvm::StructType::create(
59 return llvm::PointerType::get(
62 return llvm::PointerType::get(
66 return llvm::PointerType::get(
69 return llvm::PointerType::get(
73 return llvm::PointerType::get
    [all...]
CodeGenTypeCache.h 23 class PointerType;
53 llvm::PointerType *VoidPtrTy;
54 llvm::PointerType *Int8PtrTy;
59 llvm::PointerType *VoidPtrPtrTy;
60 llvm::PointerType *Int8PtrPtrTy;
Address.h 44 llvm::PointerType *getType() const {
45 return llvm::cast<llvm::PointerType>(getPointer()->getType());
  /external/llvm/lib/CodeGen/
CoreCLRGC.cpp 43 PointerType *PT = cast<PointerType>(V->getType());
StatepointExampleGC.cpp 39 PointerType *PT = cast<PointerType>(V->getType());
  /external/llvm/tools/llvm-pdbdump/
FunctionDumper.h 23 enum class PointerType { None, Pointer, Reference };
26 PointerType Pointer);
27 void start(const PDBSymbolFunc &Symbol, PointerType Pointer);
FunctionDumper.cpp 51 const char *Name, PointerType Pointer) {
67 if (Pointer == PointerType::None) {
85 if (Pointer == PointerType::Reference)
111 void FunctionDumper::start(const PDBSymbolFunc &Symbol, PointerType Pointer) {
143 if (Pointer == PointerType::Pointer)
145 else if (Pointer == FunctionDumper::PointerType::Reference)
156 if (Pointer != FunctionDumper::PointerType::None)
165 if (Pointer != FunctionDumper::PointerType::None) {
166 if (Pointer == PointerType::Pointer)
168 else if (Pointer == FunctionDumper::PointerType::Reference
    [all...]
TypedefDumper.cpp 60 FunctionDumper::PointerType Pointer = FunctionDumper::PointerType::Pointer;
62 Pointer = FunctionDumper::PointerType::Reference;
73 Dumper.start(Symbol, nullptr, FunctionDumper::PointerType::None);
VariableDumper.cpp 105 FunctionDumper::PointerType Pointer =
106 Symbol.isReference() ? FunctionDumper::PointerType::Reference
107 : FunctionDumper::PointerType::Pointer;
156 if (auto *PointerType = dyn_cast<PDBSymbolTypePointer>(&Type)) {
157 auto PointeeType = PointerType->getPointeeType();
161 FunctionDumper::PointerType PT = FunctionDumper::PointerType::Pointer;
162 if (PointerType->isReference())
163 PT = FunctionDumper::PointerType::Reference;
  /external/clang/lib/StaticAnalyzer/Checkers/
CastToStructChecker.cpp 41 const PointerType *OrigPTy = dyn_cast<PointerType>(OrigTy.getTypePtr());
42 const PointerType *ToPTy = dyn_cast<PointerType>(ToTy.getTypePtr());
MallocSizeofChecker.cpp 140 if (B->isVoidPointerType() && A->getAs<PointerType>())
150 if (const PointerType *ptrA = A->getAs<PointerType>())
151 if (const PointerType *ptrB = B->getAs<PointerType>()) {
187 QualType PointeeType = CastedType->getAs<PointerType>()->getPointeeType();
  /external/libchrome/crypto/
scoped_openssl_types.h 32 template <typename PointerType, void (*Destroyer)(PointerType*)>
34 scoped_ptr<PointerType, OpenSSLDestroyer<PointerType, Destroyer>>;
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypePointer.h 25 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::PointerType)
  /external/llvm/include/llvm/IR/
Type.h 27 class PointerType;
208 /// isPointerTy - True if this is an instance of PointerType.
397 static PointerType *getHalfPtrTy(LLVMContext &C, unsigned AS = 0);
398 static PointerType *getFloatPtrTy(LLVMContext &C, unsigned AS = 0);
399 static PointerType *getDoublePtrTy(LLVMContext &C, unsigned AS = 0);
400 static PointerType *getX86_FP80PtrTy(LLVMContext &C, unsigned AS = 0);
401 static PointerType *getFP128PtrTy(LLVMContext &C, unsigned AS = 0);
402 static PointerType *getPPC_FP128PtrTy(LLVMContext &C, unsigned AS = 0);
403 static PointerType *getX86_MMXPtrTy(LLVMContext &C, unsigned AS = 0);
404 static PointerType *getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS = 0)
    [all...]
DerivedTypes.h 146 /// CompositeType - Common super class of ArrayType, StructType, PointerType
442 /// PointerType - Class to represent pointers.
444 class PointerType : public SequentialType {
445 PointerType(const PointerType &) = delete;
446 const PointerType &operator=(const PointerType &) = delete;
447 explicit PointerType(Type *ElType, unsigned AddrSpace);
450 /// PointerType::get - This constructs a pointer to an object of the specified
452 static PointerType *get(Type *ElementType, unsigned AddressSpace)
    [all...]
  /external/eigen/Eigen/src/Core/
MapBase.h 48 PointerType;
126 inline MapBase(PointerType dataPtr) : m_data(dataPtr), m_rows(RowsAtCompileTime), m_cols(ColsAtCompileTime)
132 inline MapBase(PointerType dataPtr, Index vecSize)
143 inline MapBase(PointerType dataPtr, Index nbRows, Index nbCols)
163 PointerType m_data;
179 typedef typename Base::PointerType PointerType;
228 explicit inline MapBase(PointerType dataPtr) : Base(dataPtr) {}
229 inline MapBase(PointerType dataPtr, Index vecSize) : Base(dataPtr, vecSize) {}
230 inline MapBase(PointerType dataPtr, Index nbRows, Index nbCols) : Base(dataPtr, nbRows, nbCols) {
    [all...]
Map.h 112 typedef typename Base::PointerType PointerType;
115 inline PointerType cast_to_pointer_type(PointerArgType ptr) { return const_cast<PointerType>(ptr); }
117 typedef PointerType PointerArgType;
118 inline PointerType cast_to_pointer_type(PointerArgType ptr) { return ptr; }
  /external/llvm/lib/Target/NVPTX/
NVPTXLowerAlloca.cpp 69 auto PTy = dyn_cast<PointerType>(allocaInst->getType());
71 auto LocalAddrTy = PointerType::get(ETy, ADDRESS_SPACE_LOCAL);
73 auto GenericAddrTy = PointerType::get(ETy, ADDRESS_SPACE_GENERIC);
NVPTXLowerKernelArgs.cpp 146 PointerType *PType = dyn_cast<PointerType>(Arg->getType());
159 Arg, PointerType::get(StructType, ADDRESS_SPACE_PARAM), Arg->getName(),
182 Ptr, PointerType::get(Ptr->getType()->getPointerElementType(),
NVPTXFavorNonGenericAddrSpaces.cpp 130 PointerType *SrcTy = cast<PointerType>(Src->getType());
131 PointerType *DestTy = cast<PointerType>(Cast->getType());
200 PointerType::get(BC->getType()->getPointerElementType(),
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 190 if (isa<PointerType>(Arg->getType()) && Arg->hasByValAttr()) {
201 if (Arg->hasByValAttr() && dyn_cast<PointerType>(T)) {
202 T = dyn_cast<PointerType>(T)->getElementType();
260 if (dyn_cast<PointerType>(Op->getType())->getAddressSpace() != Addrspace) {
261 Op = new BitCastInst(Op, PointerType::get(dyn_cast<PointerType>(
281 PointerType *OrigPtrType = dyn_cast<PointerType>(OrigPtr->getType());
283 Type* NewPtrType = PointerType::get(OrigPtrType->getElementType(),
331 PointerType * ArgPtrType = dyn_cast<PointerType>(P.Val->getType())
    [all...]
  /external/clang/lib/Sema/
SemaFixItUtils.cpp 35 if (isa<PointerType>(From) && isa<PointerType>(To)) {
37 (cast<PointerType>(From))->getPointeeType());
39 (cast<PointerType>(To))->getPointeeType());
94 if (const PointerType *FromPtrTy = dyn_cast<PointerType>(FromQTy)) {
128 if (isa<PointerType>(ToQTy)) {
  /external/llvm/lib/IR/
Type.cpp 89 if (auto *PTy = dyn_cast<PointerType>(this)) {
90 if (auto *OtherPTy = dyn_cast<PointerType>(Ty))
210 return cast<PointerType>(getScalarType())->getAddressSpace();
241 PointerType *Type::getHalfPtrTy(LLVMContext &C, unsigned AS) {
245 PointerType *Type::getFloatPtrTy(LLVMContext &C, unsigned AS) {
249 PointerType *Type::getDoublePtrTy(LLVMContext &C, unsigned AS) {
253 PointerType *Type::getX86_FP80PtrTy(LLVMContext &C, unsigned AS) {
257 PointerType *Type::getFP128PtrTy(LLVMContext &C, unsigned AS) {
261 PointerType *Type::getPPC_FP128PtrTy(LLVMContext &C, unsigned AS) {
265 PointerType *Type::getX86_MMXPtrTy(LLVMContext &C, unsigned AS)
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ARCRuntimeEntryPoints.h 130 Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
146 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
164 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
165 Type *I8XX = PointerType::getUnqual(I8X);
  /external/clang/lib/Analysis/
CocoaConventions.cpp 42 const PointerType* PT = RetTy->getAs<PointerType>();

Completed in 1690 milliseconds

1 2 3 4 5 6 7 8 91011>>