Home
last modified time | relevance | path

Searched refs:PType (Results 1 – 20 of 20) sorted by relevance

/external/llvm/lib/Target/NVPTX/
DNVPTXLowerKernelArgs.cpp146 PointerType *PType = dyn_cast<PointerType>(Arg->getType()); in handleByValParam() local
148 assert(PType && "Expecting pointer type in handleByValParam"); in handleByValParam()
150 Type *StructType = PType->getElementType(); in handleByValParam()
/external/llvm-project/llvm/lib/Target/NVPTX/
DNVPTXLowerArgs.cpp157 PointerType *PType = dyn_cast<PointerType>(Arg->getType()); in handleByValParam() local
159 assert(PType && "Expecting pointer type in handleByValParam"); in handleByValParam()
161 Type *StructType = PType->getElementType(); in handleByValParam()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXLowerArgs.cpp157 PointerType *PType = dyn_cast<PointerType>(Arg->getType()); in handleByValParam() local
159 assert(PType && "Expecting pointer type in handleByValParam"); in handleByValParam()
161 Type *StructType = PType->getElementType(); in handleByValParam()
/external/llvm-project/llvm/include/llvm/Transforms/Utils/
DPredicateInfo.h140 PredicateWithEdge(PredicateType PType, Value *Op, BasicBlock *From, in PredicateWithEdge() argument
142 : PredicateBase(PType, Op, Cond), From(From), To(To) {} in PredicateWithEdge()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DPredicateInfo.h156 PredicateWithEdge(PredicateType PType, Value *Op, BasicBlock *From, in PredicateWithEdge() argument
158 : PredicateWithCondition(PType, Op, Cond), From(From), To(To) {} in PredicateWithEdge()
/external/clang/lib/StaticAnalyzer/Checkers/
DGenericTaintChecker.cpp490 QualType PType = ArgTy->getPointeeType(); in process() local
491 if ((!PType.isNull() && !PType.isConstQualified()) in process()
/external/clang/lib/AST/
DASTContext.cpp5190 QualType PType = PI->getType(); in getObjCEncodingForBlock() local
5191 CharUnits sz = getObjCEncodingTypeSize(PType); in getObjCEncodingForBlock()
5205 QualType PType = PVDecl->getOriginalType(); in getObjCEncodingForBlock() local
5207 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) { in getObjCEncodingForBlock()
5211 PType = PVDecl->getType(); in getObjCEncodingForBlock()
5212 } else if (PType->isFunctionType()) in getObjCEncodingForBlock()
5213 PType = PVDecl->getType(); in getObjCEncodingForBlock()
5215 getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, PType, in getObjCEncodingForBlock()
5218 getObjCEncodingForType(PType, S); in getObjCEncodingForBlock()
5220 ParmOffset += getObjCEncodingTypeSize(PType); in getObjCEncodingForBlock()
[all …]
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DGenericTaintChecker.cpp733 QualType PType = ArgTy->getPointeeType(); in process() local
734 if ((!PType.isNull() && !PType.isConstQualified()) || in process()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/
DBPFAbstractMemberAccess.cpp364 const DIType *PType = stripQualifiers(cast<DIType>(ParentType)); in IsValidAIChain() local
373 if (const auto *PtrTy = dyn_cast<DIDerivedType>(PType)) { in IsValidAIChain()
380 const auto *PTy = dyn_cast<DICompositeType>(PType); in IsValidAIChain()
/external/llvm-project/clang/lib/AST/
DASTContext.cpp6839 QualType PType = PI->getType(); in getObjCEncodingForBlock() local
6840 CharUnits sz = getObjCEncodingTypeSize(PType); in getObjCEncodingForBlock()
6854 QualType PType = PVDecl->getOriginalType(); in getObjCEncodingForBlock() local
6856 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) { in getObjCEncodingForBlock()
6860 PType = PVDecl->getType(); in getObjCEncodingForBlock()
6861 } else if (PType->isFunctionType()) in getObjCEncodingForBlock()
6862 PType = PVDecl->getType(); in getObjCEncodingForBlock()
6864 getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, PType, in getObjCEncodingForBlock()
6867 getObjCEncodingForType(PType, S); in getObjCEncodingForBlock()
6869 ParmOffset += getObjCEncodingTypeSize(PType); in getObjCEncodingForBlock()
[all …]
/external/llvm-project/llvm/lib/Target/BPF/
DBPFAbstractMemberAccess.cpp428 const DIType *PType = stripQualifiers(cast<DIType>(ParentType)); in IsValidAIChain() local
437 if (const auto *PtrTy = dyn_cast<DIDerivedType>(PType)) { in IsValidAIChain()
444 const auto *PTy = dyn_cast<DICompositeType>(PType); in IsValidAIChain()
/external/angle/src/libANGLE/capture/
Dframe_capture_utils_autogen.h272 template <ParamType PType, typename T>
1086 template <ParamType PType, typename T>
1345 template <ParamType PType, typename T>
2137 template <ParamType PType, typename T>
/external/llvm-project/clang/test/SemaObjC/
Dattr-swift_name.m10 __attribute__((__swift_name__("PType")))
/external/clang/lib/Sema/
DSemaChecking.cpp9382 static void diagnoseArrayStarInParamType(Sema &S, QualType PType, in diagnoseArrayStarInParamType() argument
9384 if (!PType->isVariablyModifiedType()) in diagnoseArrayStarInParamType()
9386 if (const auto *PointerTy = dyn_cast<PointerType>(PType)) { in diagnoseArrayStarInParamType()
9390 if (const auto *ReferenceTy = dyn_cast<ReferenceType>(PType)) { in diagnoseArrayStarInParamType()
9394 if (const auto *ParenTy = dyn_cast<ParenType>(PType)) { in diagnoseArrayStarInParamType()
9399 const ArrayType *AT = S.Context.getAsArrayType(PType); in diagnoseArrayStarInParamType()
9445 QualType PType = Param->getOriginalType(); in CheckParmsForFunctionDef() local
9448 diagnoseArrayStarInParamType(*this, PType, Param->getLocation()); in CheckParmsForFunctionDef()
/external/llvm-project/clang/lib/Sema/
DSemaChecking.cpp13819 static void diagnoseArrayStarInParamType(Sema &S, QualType PType, in diagnoseArrayStarInParamType() argument
13821 if (!PType->isVariablyModifiedType()) in diagnoseArrayStarInParamType()
13823 if (const auto *PointerTy = dyn_cast<PointerType>(PType)) { in diagnoseArrayStarInParamType()
13827 if (const auto *ReferenceTy = dyn_cast<ReferenceType>(PType)) { in diagnoseArrayStarInParamType()
13831 if (const auto *ParenTy = dyn_cast<ParenType>(PType)) { in diagnoseArrayStarInParamType()
13836 const ArrayType *AT = S.Context.getAsArrayType(PType); in diagnoseArrayStarInParamType()
13883 QualType PType = Param->getOriginalType(); in CheckParmsForFunctionDef() local
13886 diagnoseArrayStarInParamType(*this, PType, Param->getLocation()); in CheckParmsForFunctionDef()
DSemaTemplateDeduction.cpp5694 QualType PType = Context.getTemplateSpecializationType(X, PArgs); in isTemplateTemplateParameterAtLeastAsSpecializedAs() local
5700 return isAtLeastAsSpecializedAs(*this, PType, AType, AArg, Info); in isTemplateTemplateParameterAtLeastAsSpecializedAs()
/external/clang/lib/CodeGen/
DItaniumCXXABI.cpp626 llvm::Type *PType = CGF.ConvertTypeForMem(MPT->getPointeeType()) in EmitMemberDataPointerAddress() local
628 return Builder.CreateBitCast(Addr, PType); in EmitMemberDataPointerAddress()
DMicrosoftCXXABI.cpp2940 llvm::Type *PType = in EmitMemberDataPointerAddress() local
2977 return Builder.CreateBitCast(Addr, PType); in EmitMemberDataPointerAddress()
/external/llvm-project/clang/lib/CodeGen/
DItaniumCXXABI.cpp863 llvm::Type *PType = CGF.ConvertTypeForMem(MPT->getPointeeType()) in EmitMemberDataPointerAddress() local
865 return Builder.CreateBitCast(Addr, PType); in EmitMemberDataPointerAddress()
DMicrosoftCXXABI.cpp3099 llvm::Type *PType = in EmitMemberDataPointerAddress() local
3136 return Builder.CreateBitCast(Addr, PType); in EmitMemberDataPointerAddress()