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

12345

/external/libcxx/test/std/thread/futures/futures.task/futures.task.members/
H A Dctor1.fail.cpp25 typedef std::packaged_task<A(int, char)> PT; typedef
33 PT p1{init}; // expected-error {{no matching constructor}}
34 PT p2{c_init}; // expected-error {{no matching constructor}}
35 PT p3{std::move(init)}; // expected-error {{no matching constructor for initialization of 'PT' (aka 'packaged_task<A (int, char)>')}}
H A Dctor2.fail.cpp27 typedef std::packaged_task<A(int, char)> PT; typedef
32 PT p { std::allocator_arg_t{}, test_allocator<A>{}, VPT {}}; // expected-error {{no matching constructor for initialization of 'PT' (aka 'packaged_task<A (int, char)>')}}
/external/swiftshader/third_party/LLVM/runtime/libprofile/
H A DProfiling.h33 void write_profiling_data(enum ProfilingType PT, unsigned *Start,
H A DCommonProfiling.c128 void write_profiling_data(enum ProfilingType PT, unsigned *Start, argument
134 PTy = PT;
/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.cpp294 const PointerType *PT = argTy->getAs<PointerType>(); local
295 if (!PT)
299 if (PT->getPointeeType().isConstQualified())
302 argTy = PT->getPointeeType();
368 const PointerType *PT = argTy->getAs<PointerType>(); local
369 if (!PT)
371 QualType pointeeTy = PT->getPointeeType();
388 const PointerType *PT = argTy->getAs<PointerType>(); local
389 if (!PT)
392 C.getCanonicalType(PT
[all...]
H A DScanfFormatString.cpp418 QualType PT = QT->getPointeeType();
421 if (const EnumType *ETy = PT->getAs<EnumType>())
422 PT = ETy->getDecl()->getIntegerType();
424 const BuiltinType *BT = PT->getAs<BuiltinType>();
429 if (PT->isAnyCharacterType()) {
431 if (PT->isWideCharType())
494 if (isa<TypedefType>(PT) && (LangOpt.C99 || LangOpt.CPlusPlus11))
495 namedTypeToLengthModifier(PT, LM);
505 if (PT->isRealFloatingType())
507 else if (PT
[all...]
/external/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp149 Modifier(BasicBlock *Block, PieceTable *PT, Random *R): argument
150 BB(Block),PT(PT),Ran(R),Context(BB->getContext()) {}
166 assert(PT->size());
167 return PT->at(Ran->Rand() % PT->size());
186 for (unsigned i=0; i<PT->size(); ++i) {
187 Value *V = PT->at((index + i) % PT->size());
219 for (unsigned i=0; i<PT
290 PieceTable *PT; member in struct:llvm::__anon13534::Modifier
298 LoadModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
308 StoreModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
326 BinModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
370 ConstModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
416 AllocaModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
425 ExtractElementModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
439 ShuffModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
466 InsertElementModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
483 CastModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
568 SelectModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
593 CmpModifier(BasicBlock *BB, PieceTable *PT, Random *R) argument
628 Modifier::PieceTable PT; local
[all...]
/external/llvm/lib/CodeGen/
H A DBuiltinGCs.cpp82 const PointerType *PT = cast<PointerType>(Ty); variable
88 return (1 == PT->getAddressSpace());
115 const PointerType *PT = cast<PointerType>(Ty); variable
117 return (1 == PT->getAddressSpace());
/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/ltp/tools/top-LTP/proc/
H A Dreadproc.c39 PROCTAB *PT = xmalloc(sizeof(PROCTAB)); local
42 PT->procfs = NULL;
43 else if (!(PT->procfs = opendir("/proc")))
45 PT->flags = flags;
48 PT->pids = va_arg(ap, pid_t *);
50 PT->uids = va_arg(ap, uid_t *);
51 PT->nuid = va_arg(ap, int);
54 return PT;
59 void closeproc(PROCTAB * PT) argument
61 if (PT) {
385 readproc(PROCTAB * PT, proc_t * p) argument
509 ps_readproc(PROCTAB * PT, proc_t * p) argument
626 PROCTAB *PT = NULL; local
[all...]
H A Dreadproc.h174 extern void closeproc(PROCTAB* PT);
178 extern proc_t* readproc(PROCTAB* PT, proc_t* return_buf);
179 extern proc_t* ps_readproc(PROCTAB* PT, proc_t* return_buf);
/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/llvm/unittests/AsmParser/
H A DAsmParserTest.cpp255 PointerType *PT = cast<PointerType>(Ty); local
256 Ty = PT->getElementType();
265 PT = cast<PointerType>(Ty);
266 Ty = PT->getElementType();
269 PT = cast<PointerType>(Ty);
270 Ty = PT->getElementType();
389 PointerType *PT = cast<PointerType>(Ty); local
390 Ty = PT->getElementType();
400 PT = cast<PointerType>(Ty);
401 Ty = PT
[all...]
/external/webrtc/tools/matlab/
H A DrtpAnalyze.m18 [SeqNo,TimeStamp,ArrTime,Size,PT,M,SSRC] = importfile(input_file);
22 ix = not(ismember(PT, 72:76));
28 PT = PT(ix);
40 uPT = unique(PT(uix == i));
58 PT = PT(ix);
70 uPT = unique(PT);
178 function [SeqNo,TimeStamp,SendTime,Size,PT,M,SSRC] = ...
181 % [SEQNO,TIMESTAMP,SENDTIME,SIZE,PT,
[all...]
/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.cpp319 const PointerType *PT = FPT->getParamType(0)->getAs<PointerType>(); local
320 if (!PT)
323 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
359 const PointerType *PT = FPT->getParamType(1)->getAs<PointerType>(); local
360 if (!PT)
363 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
399 const PointerType *PT = FPT->getParamType(0)->getAs<PointerType>(); local
400 if (!PT)
404 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
571 const PointerType *PT local
600 const PointerType *PT = FTP->getParamType(0)->getAs<PointerType>(); local
[all...]
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DIRBuilder.cpp43 PointerType *PT = cast<PointerType>(Ptr->getType()); local
44 if (PT->getElementType()->isIntegerTy(8))
48 PT = getInt8PtrTy(PT->getAddressSpace());
49 BitCastInst *BCI = new BitCastInst(Ptr, PT, "");
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DMemoryBuiltins.cpp168 PointerType *PT = getMallocType(CI); local
169 return PT ? PT->getElementType() : NULL;
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-myanmar-machine.rl54 PT = 25;
74 pwo_tone_group = PT A* DB? As?;
/external/swiftshader/third_party/LLVM/include/llvm/
H A DInstruction.h386 typedef Instruction* PT; typedef in class:llvm::PointerLikeTypeTraits
388 static inline void *getAsVoidPointer(PT P) { return P; }
389 static inline PT getFromVoidPointer(void *P) {
390 return static_cast<PT>(P);
H A DValue.h397 typedef Value* PT; typedef in class:llvm::PointerLikeTypeTraits
399 static inline void *getAsVoidPointer(PT P) { return P; }
400 static inline PT getFromVoidPointer(void *P) {
401 return static_cast<PT>(P);
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_utility.cc169 const uint8_t PT = _ptrRTPDataBegin[1]; local
176 header->payloadType = PT;
199 const uint8_t PT = _ptrRTPDataBegin[1] & 0x7f; local
223 header->payloadType = PT;
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DDwarfEHPrepare.cpp383 TerminatorInst *PT = (*PI)->getTerminator(); local
388 if (SwitchOK && isa<SwitchInst>(PT)) {
392 if (!isa<InvokeInst>(PT) || LPad == PT->getSuccessor(0)) {
416 TerminatorInst *PT = (*PI++)->getTerminator(); local
417 if (isa<InvokeInst>(PT) && PT->getSuccessor(1) == LPad)
419 PT->setSuccessor(1, NewBB);
/external/llvm/include/llvm/IR/
H A DInstruction.h559 typedef Instruction* PT; typedef in class:llvm::PointerLikeTypeTraits
561 static inline void *getAsVoidPointer(PT P) { return P; }
562 static inline PT getFromVoidPointer(void *P) {
563 return static_cast<PT>(P);

Completed in 1378 milliseconds

12345