Searched refs:PT (Results 1 - 25 of 86) sorted by relevance

1234

/external/libcxx/test/std/thread/futures/futures.tas/futures.task.members/
H A Dctor1.fail.cpp22 typedef std::packaged_task<A(int, char)> PT; typedef
28 PT p { VPT{} };
H A Dctor2.fail.cpp24 typedef std::packaged_task<A(int, char)> PT; typedef
29 PT p { std::allocator_arg_t{}, test_allocator<A>{}, VPT {}};
/external/llvm/lib/CodeGen/
H A DStatepointExampleGC.cpp39 PointerType *PT = cast<PointerType>(V->getType()); variable
45 return (1 == PT->getAddressSpace());
H A DGlobalMerge.cpp303 PointerType *PT = dyn_cast<PointerType>(I->getType()); local
304 assert(PT && "Global variable is not a pointer!");
306 unsigned AddressSpace = PT->getAddressSpace();
/external/clang/lib/Analysis/
H A DCocoaConventions.cpp42 const PointerType* PT = RetTy->getAs<PointerType>(); local
43 if (!(PT->getPointeeType().getUnqualifiedType()->isVoidType()))
63 const ObjCObjectPointerType *PT = Ty->getAs<ObjCObjectPointerType>(); local
66 if (!PT)
71 if (PT->isObjCIdType() || PT->isObjCQualifiedIdType() ||
72 PT->isObjCClassType() || PT->isObjCQualifiedClassType())
77 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
H A DFormatString.cpp263 const PointerType *PT = argTy->getAs<PointerType>(); local
264 if (!PT)
268 if (PT->getPointeeType().isConstQualified())
271 argTy = PT->getPointeeType();
337 const PointerType *PT = argTy->getAs<PointerType>(); local
338 if (!PT)
340 QualType pointeeTy = PT->getPointeeType();
357 const PointerType *PT = argTy->getAs<PointerType>(); local
358 if (!PT)
361 C.getCanonicalType(PT
[all...]
H A DScanfFormatString.cpp413 QualType PT = QT->getPointeeType();
416 if (const EnumType *ETy = PT->getAs<EnumType>())
417 PT = ETy->getDecl()->getIntegerType();
419 const BuiltinType *BT = PT->getAs<BuiltinType>();
424 if (PT->isAnyCharacterType()) {
426 if (PT->isWideCharType())
489 if (isa<TypedefType>(PT) && (LangOpt.C99 || LangOpt.CPlusPlus11))
490 namedTypeToLengthModifier(PT, LM);
500 if (PT->isRealFloatingType())
502 else if (PT
[all...]
H A DBodyFarm.cpp308 const PointerType *PT = TheValueTy->getAs<PointerType>(); local
309 if (!PT)
311 QualType PointeeTy = PT->getPointeeType();
/external/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp129 Modifier(BasicBlock *Block, PieceTable *PT, Random *R): argument
130 BB(Block),PT(PT),Ran(R),Context(BB->getContext()) {}
146 assert(PT->size());
147 return PT->at(Ran->Rand() % PT->size());
166 for (unsigned i=0; i<PT->size(); ++i) {
167 Value *V = PT->at((index + i) % PT->size());
199 for (unsigned i=0; i<PT
283 PieceTable *PT; member in struct:__anon11173::Modifier
291 LoadModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
301 StoreModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
319 BinModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
363 ConstModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
409 AllocaModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
418 ExtractElementModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
432 ShuffModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
459 InsertElementModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
476 CastModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
561 SelectModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
586 CmpModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
620 Modifier::PieceTable PT; local
[all...]
/external/clang/test/Parser/
H A Dcxx-ambig-paren-expr.cpp16 typedef int *PT; typedef
18 x = (PT()[(int){1}]); // expected-warning {{compound literals}}
/external/clang/test/Sema/
H A Doffsetof.c5 typedef struct P { int i; float f; } PT; typedef in typeref:struct:P
10 PT X[100];
/external/fio/tools/
H A Dfio_generate_plots99 PT=$(echo $x | sed s/_"$FILETYPE".log//g)
105 DEPTH=$(echo $PT | cut -d "-" -f 4)
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp320 const PointerType *PT = FPT->getParamType(0)->getAs<PointerType>(); local
321 if (!PT)
324 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
360 const PointerType *PT = FPT->getParamType(1)->getAs<PointerType>(); local
361 if (!PT)
364 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
400 const PointerType *PT = FPT->getParamType(0)->getAs<PointerType>(); local
401 if (!PT)
405 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
572 const PointerType *PT local
601 const PointerType *PT = FTP->getParamType(0)->getAs<PointerType>(); local
[all...]
H A DNSErrorChecker.cpp288 const ObjCObjectPointerType* PT = local
291 if (!PT)
294 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
H A DMallocSizeofChecker.cpp164 static bool compatibleWithArrayType(ASTContext &C, QualType PT, QualType T) { argument
168 if (typesCompatible(C, PT, AT->getElementType()))
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-myanmar-machine.rl54 PT = 25;
74 pwo_tone_group = PT A* DB? As?;
/external/llvm/include/llvm/IR/
H A DInstruction.h529 typedef Instruction* PT; typedef in class:llvm::PointerLikeTypeTraits
531 static inline void *getAsVoidPointer(PT P) { return P; }
532 static inline PT getFromVoidPointer(void *P) {
533 return static_cast<PT>(P);
H A DValue.h685 typedef Value* PT; typedef in class:llvm::PointerLikeTypeTraits
687 static inline void *getAsVoidPointer(PT P) { return P; }
688 static inline PT getFromVoidPointer(void *P) {
689 return static_cast<PT>(P);
/external/llvm/lib/Support/
H A DHost.cpp875 Triple PT(Triple::normalize(LLVM_HOST_TRIPLE));
877 if (sizeof(void *) == 8 && PT.isArch32Bit())
878 PT = PT.get64BitArchVariant();
879 if (sizeof(void *) == 4 && PT.isArch64Bit())
880 PT = PT.get32BitArchVariant();
882 return PT.str();
/external/llvm/lib/ExecutionEngine/Orc/
H A DIndirectionUtils.cpp31 GlobalVariable* createImplPointer(PointerType &PT, Module &M, argument
34 Initializer = Constant::getNullValue(&PT);
35 return new GlobalVariable(M, &PT, false, GlobalValue::ExternalLinkage,
/external/llvm/tools/llvm-pdbdump/
H A DVariableDumper.cpp161 FunctionDumper::PointerType PT = FunctionDumper::PointerType::Pointer; local
163 PT = FunctionDumper::PointerType::Reference;
165 Dumper.start(*FunctionSig, NameStr.c_str(), PT);
/external/llvm/lib/IR/
H A DIRBuilder.cpp44 PointerType *PT = cast<PointerType>(Ptr->getType()); local
45 if (PT->getElementType()->isIntegerTy(8))
49 PT = getInt8PtrTy(PT->getAddressSpace());
50 BitCastInst *BCI = new BitCastInst(Ptr, PT, "");
/external/clang/tools/libclang/
H A DCXType.cpp778 static long long validateFieldParentType(CXCursor PC, CXType PT){ argument
792 QualType RT = GetQualType(PT);
804 long long clang_Type_getOffsetOf(CXType PT, const char *S) { argument
805 // check that PT is not incomplete/dependent
806 CXCursor PC = clang_getTypeDeclaration(PT);
807 long long Error = validateFieldParentType(PC,PT);
813 ASTContext &Ctx = cxtu::getASTUnit(GetTU(PT))->getASTContext();
839 CXType PT = clang_getCursorType(PC); local
840 long long Error = validateFieldParentType(PC,PT);
943 unsigned clang_Type_visitFields(CXType PT, argument
[all...]
/external/clang/lib/Sema/
H A DSemaExceptionSpec.cpp85 if (const PointerType *PT = T->getAs<PointerType>()) {
86 PointeeT = PT->getPointeeType();
126 if (const PointerType *PT = T->getAs<PointerType>())
127 T = PT->getPointeeType();
128 else if (const MemberPointerType *PT = T->getAs<MemberPointerType>())
129 T = PT->getPointeeType();
864 } else if (const PointerType *PT = T->getAs<PointerType>())
865 FT = PT->getPointeeType()->getAs<FunctionProtoType>();
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILPeepholeOptimizer.cpp123 size_t getTypeSize(PointerType * const PT, bool dereferencePtr = false);
216 const PointerType *PT = dyn_cast<PointerType>(arg->getType()); local
217 if (!PT) {
220 Type *DereferencedType = PT->getElementType();
1251 size_t AMDGPUPeepholeOpt::getTypeSize(PointerType * const PT, argument
1253 if (!PT) {
1256 Type *CT = PT->getElementType();
1258 PT->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS) {
1262 for (size_t x = 0, y = PT->getNumContainedTypes(); x < y; ++x) {
1263 size += getTypeSize(PT
[all...]

Completed in 1222 milliseconds

1234