Searched defs:PointerType (Results 1 - 19 of 19) sorted by relevance

/external/llvm/tools/llvm-pdbdump/
H A DFunctionDumper.h23 enum class PointerType { None, Pointer, Reference }; class in class:llvm::pdb::FunctionDumper
26 PointerType Pointer);
27 void start(const PDBSymbolFunc &Symbol, PointerType Pointer);
/external/eigen/Eigen/src/Core/
H A DMap.h96 typedef typename Base::PointerType PointerType; typedef in class:Eigen::Map
97 typedef PointerType PointerArgType;
99 inline PointerType cast_to_pointer_type(PointerArgType ptr) { return ptr; }
H A DMapBase.h57 PointerType; typedef in class:Eigen::MapBase
149 explicit inline MapBase(PointerType dataPtr) : m_data(dataPtr), m_rows(RowsAtCompileTime), m_cols(ColsAtCompileTime)
157 inline MapBase(PointerType dataPtr, Index vecSize)
170 inline MapBase(PointerType dataPtr, Index rows, Index cols)
200 PointerType m_data;
226 typedef typename Base::PointerType PointerType; typedef in class:Eigen::MapBase
279 EIGEN_DEVICE_FUNC explicit inline MapBase(PointerType dataPtr) : Base(dataPtr) {}
280 EIGEN_DEVICE_FUNC inline MapBase(PointerType dataPtr, Index vecSize) : Base(dataPtr, vecSize) {}
281 EIGEN_DEVICE_FUNC inline MapBase(PointerType dataPt
[all...]
H A DCoreEvaluators.h811 typedef typename XprType::PointerType PointerType; typedef in struct:Eigen::internal::mapbase_evaluator
822 : m_data(const_cast<PointerType>(map.data())),
859 PointerType ptr = m_data + row * rowStride() + col * colStride();
874 PointerType ptr = m_data + row * rowStride() + col * colStride();
890 PointerType m_data;
/external/spirv-llvm/lib/SPIRV/Mangler/
H A DParameterType.cpp53 PointerType::PointerType(const RefParamType type) : function in class:SPIR::PointerType
61 MangleError PointerType::accept(TypeVisitor* visitor) const {
65 void PointerType::setAddressSpace(TypeAttributeEnum attr) {
72 TypeAttributeEnum PointerType::getAddressSpace() const {
76 void PointerType::setQualifier(TypeAttributeEnum qual, bool enabled) {
83 bool PointerType::hasQualifier(TypeAttributeEnum qual) const {
90 std::string PointerType::toString() const {
103 bool PointerType::equals(const ParamType* type) const {
104 const PointerType*
[all...]
H A DParameterType.h196 struct PointerType: public ParamType { struct in namespace:SPIR
202 PointerType(const RefParamType type);
445 virtual MangleError visit(const PointerType*) = 0;
/external/swiftshader/third_party/LLVM/lib/Target/PTX/
H A DPTXSelectionDAGInfo.cpp61 EVT PointerType = Subtarget->is64Bit() ? MVT::i64 : MVT::i32; local
70 DAG.getNode(ISD::ADD, dl, PointerType, Src,
71 DAG.getConstant(SrcOff, PointerType)),
82 DAG.getNode(ISD::ADD, dl, PointerType, Dst,
83 DAG.getConstant(DstOff, PointerType)),
109 DAG.getNode(ISD::ADD, dl, PointerType, Src,
110 DAG.getConstant(SrcOff, PointerType)),
131 DAG.getNode(ISD::ADD, dl, PointerType, Dst,
132 DAG.getConstant(DstOff, PointerType)),
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorEvalTo.h71 typedef typename MakePointer_<CoeffReturnType>::Type PointerType; typedef in class:Eigen::TensorEvalToOp
76 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvalToOp(PointerType buffer, const XprType& expr)
83 EIGEN_DEVICE_FUNC PointerType buffer() const { return m_buffer; }
87 PointerType m_buffer;
H A DTensorMap.h43 PointerType;*/
44 typedef typename MakePointer_<Scalar>::Type PointerType; typedef in class:Eigen::TensorMap
45 typedef PointerType PointerArgType;
117 EIGEN_STRONG_INLINE PointerType data() { return m_data; }
119 EIGEN_STRONG_INLINE const PointerType data() const { return m_data; }
H A DTensorRef.h130 typedef Scalar* PointerType; typedef in class:Eigen::TensorRef
131 typedef PointerType PointerArgType;
/external/llvm/unittests/DebugInfo/PDB/
H A DPDBApiTest.cpp341 InsertItemWithTag(PDB_SymType::PointerType); variable
403 VerifyDyncast<PDBSymbolTypePointer>(PDB_SymType::PointerType);
/external/swiftshader/third_party/LLVM/include/llvm/
H A DDerivedTypes.h143 /// CompositeType - Common super class of ArrayType, StructType, PointerType
423 /// PointerType - Class to represent pointers.
425 class PointerType : public SequentialType { class in namespace:llvm
426 PointerType(const PointerType &); // Do not implement
427 const PointerType &operator=(const PointerType &); // Do not implement
428 explicit PointerType(Type *ElType, unsigned AddrSpace);
430 /// PointerType::get - This constructs a pointer to an object of the specified
432 static PointerType *ge
[all...]
/external/webrtc/webrtc/base/
H A Dbind.h123 // PointerType<T>::type will be scoped_refptr<T> for ref counted types, and T*
126 struct PointerType { struct in namespace:rtc::detail
143 typename detail::PointerType<ObjectT>::type object_;
211 typename detail::PointerType<ObjectT>::type object_;
294 typename detail::PointerType<ObjectT>::type object_;
392 typename detail::PointerType<ObjectT>::type object_;
505 typename detail::PointerType<ObjectT>::type object_;
633 typename detail::PointerType<ObjectT>::type object_;
776 typename detail::PointerType<ObjectT>::type object_;
940 typename detail::PointerType<Object
[all...]
/external/llvm/include/llvm/IR/
H A DDerivedTypes.h155 /// Common super class of ArrayType, StructType, PointerType and VectorType.
443 class PointerType : public SequentialType { class in namespace:llvm
444 PointerType(const PointerType &) = delete;
445 const PointerType &operator=(const PointerType &) = delete;
446 explicit PointerType(Type *ElType, unsigned AddrSpace);
451 static PointerType *get(Type *ElementType, unsigned AddressSpace);
455 static PointerType *getUnqual(Type *ElementType) {
456 return PointerType
[all...]
/external/llvm/lib/IR/
H A DType.cpp83 if (auto *PTy = dyn_cast<PointerType>(this)) {
84 if (auto *OtherPTy = dyn_cast<PointerType>(Ty))
177 PointerType *Type::getHalfPtrTy(LLVMContext &C, unsigned AS) {
181 PointerType *Type::getFloatPtrTy(LLVMContext &C, unsigned AS) {
185 PointerType *Type::getDoublePtrTy(LLVMContext &C, unsigned AS) {
189 PointerType *Type::getX86_FP80PtrTy(LLVMContext &C, unsigned AS) {
193 PointerType *Type::getFP128PtrTy(LLVMContext &C, unsigned AS) {
197 PointerType *Type::getPPC_FP128PtrTy(LLVMContext &C, unsigned AS) {
201 PointerType *Type::getX86_MMXPtrTy(LLVMContext &C, unsigned AS) {
205 PointerType *Typ
675 PointerType::PointerType(Type *E, unsigned AddrSpace) function in class:PointerType
[all...]
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DType.cpp220 PointerType *Type::getFloatPtrTy(LLVMContext &C, unsigned AS) {
224 PointerType *Type::getDoublePtrTy(LLVMContext &C, unsigned AS) {
228 PointerType *Type::getX86_FP80PtrTy(LLVMContext &C, unsigned AS) {
232 PointerType *Type::getFP128PtrTy(LLVMContext &C, unsigned AS) {
236 PointerType *Type::getPPC_FP128PtrTy(LLVMContext &C, unsigned AS) {
240 PointerType *Type::getX86_MMXPtrTy(LLVMContext &C, unsigned AS) {
244 PointerType *Type::getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS) {
248 PointerType *Type::getInt1PtrTy(LLVMContext &C, unsigned AS) {
252 PointerType *Type::getInt8PtrTy(LLVMContext &C, unsigned AS) {
256 PointerType *Typ
690 PointerType::PointerType(Type *E, unsigned AddrSpace) function in class:PointerType
[all...]
/external/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h183 PointerType, member in class:llvm::pdb::PDB_Checksum::PDB_Machine::PDB_SymType
/external/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp1861 llvm::PointerType *GuardPtrTy) {
1873 llvm::PointerType *GuardPtrTy) {
1884 llvm::PointerType *GuardPtrTy) {
1948 llvm::PointerType *guardPtrTy = guardTy->getPointerTo();
2586 static bool TypeInfoIsInStandardLibrary(const PointerType *PointerTy) {
2611 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
2674 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
3022 BuildPointerTypeInfo(cast<PointerType>(T
3352 QualType PointerType = getContext().getPointerType(Type); local
[all...]
/external/clang/include/clang/AST/
H A DType.h1268 /// there is a PointerType that represents 'int*', which, like 'int', is
1269 /// canonical. Finally, there is a PointerType type for 'foo*' whose canonical
2177 /// PointerType - C99 6.7.5.1 - Pointer Declarators.
2179 class PointerType : public Type, public llvm::FoldingSetNode { class in namespace:clang
2182 PointerType(QualType Pointee, QualType CanonicalPtr) : function in class:clang::PointerType
2203 bool isAddressSpaceOverlapping(const PointerType &other) const {
2267 assert(isa<PointerType>(getAdjustedType()));
2276 return cast<PointerType>(getDecayedType())->getPointeeType();
5388 if (const PointerType *PT = t.getAs<PointerType>()) {
[all...]

Completed in 554 milliseconds