Searched defs:PT (Results 1 - 25 of 57) sorted by relevance

123

/external/libcxx/test/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/clang/test/Parser/
H A Dcxx-ambig-paren-expr.cpp16 typedef int *PT; typedef
18 x = (PT()[(int){1}]); // expected-warning {{compound literals}}
/external/oprofile/module/ia64/
H A DIA64entry.h21 #define PT(f) (IA64_PT_REGS_##f##_OFFSET) macro
27 .spillsp rp, PT(CR_IIP)+16+(off); \
28 .spillsp ar.pfs, PT(CR_IFS)+16+(off); \
29 .spillsp ar.unat, PT(AR_UNAT)+16+(off); \
30 .spillsp ar.fpsr, PT(AR_FPSR)+16+(off); \
31 .spillsp pr, PT(PR)+16+(off);
/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 DBodyFarm.cpp309 const PointerType *PT = TheValueTy->getAs<PointerType>(); local
310 if (!PT)
312 QualType PointeeTy = PT->getPointeeType();
H A DFormatString.cpp260 const PointerType *PT = argTy->getAs<PointerType>(); local
261 if (!PT)
265 if (PT->getPointeeType().isConstQualified())
268 argTy = PT->getPointeeType();
333 const PointerType *PT = argTy->getAs<PointerType>(); local
334 if (!PT)
336 QualType pointeeTy = PT->getPointeeType();
353 const PointerType *PT = argTy->getAs<PointerType>(); local
354 if (!PT)
357 C.getCanonicalType(PT
[all...]
/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/lib/IR/
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/chromium_org/media/cast/net/rtcp/
H A Drtcp_utility.h31 uint8 PT; // Packet Type. member in struct:media::cast::RtcpCommonHeader
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocSizeofChecker.cpp160 static bool compatibleWithArrayType(ASTContext &C, QualType PT, QualType T) { argument
164 if (typesCompatible(C, PT, AT->getElementType()))
H A DNSErrorChecker.cpp288 const ObjCObjectPointerType* PT = local
291 if (!PT)
294 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
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/llvm/lib/CodeGen/
H A DGlobalMerge.cpp301 PointerType *PT = dyn_cast<PointerType>(I->getType()); local
302 assert(PT && "Global variable is not a pointer!");
304 unsigned AddressSpace = PT->getAddressSpace();
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DR600KernelParameters.cpp405 PointerType *PT = dyn_cast<PointerType>(T); local
408 if (PT) {
409 ST = dyn_cast<StructType>(PT->getElementType());
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...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_utility.cc288 const uint8_t PT = _ptrRTPDataBegin[1]; local
297 header->payloadType = PT;
320 const uint8_t PT = _ptrRTPDataBegin[1] & 0x7f; local
348 header.payloadType = PT;
/external/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp225 QualType PT = getContext().getPointerType(QualType(T, 0)); local
226 return loc::MemRegionVal(getRegionManager().getCXXThisRegion(PT, SFC));
/external/clang/tools/libclang/
H A DCXType.cpp775 long long clang_Type_getOffsetOf(CXType PT, const char *S) { argument
776 // check that PT is not incomplete/dependent
777 CXCursor PC = clang_getTypeDeclaration(PT);
789 QualType RT = GetQualType(PT);
801 ASTContext &Ctx = cxtu::getASTUnit(GetTU(PT))->getASTContext();
/external/llvm/include/llvm/IR/
H A DInstruction.h474 typedef Instruction* PT; typedef in class:llvm::PointerLikeTypeTraits
476 static inline void *getAsVoidPointer(PT P) { return P; }
477 static inline PT getFromVoidPointer(void *P) {
478 return static_cast<PT>(P);
/external/mesa3d/src/gallium/drivers/radeon/
H A DR600KernelParameters.cpp405 PointerType *PT = dyn_cast<PointerType>(T); local
408 if (PT) {
409 ST = dyn_cast<StructType>(PT->getElementType());
/external/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp291 PointerType *PT = getMallocType(CI, TLI); local
292 return PT ? PT->getElementType() : nullptr;
466 PointerType *PT = cast<PointerType>(A.getType()); local
467 APInt Size(IntTyBits, DL->getTypeAllocSize(PT->getElementType()));
/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:__anon26415::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/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
H A DRTPencode.cc74 void NetEQTest_GetCodec_and_PT(char * name, webrtc::NetEqDecoder *codec, int *PT, int frameLen, int *fs, int *bitrate, int *useRed);
805 void NetEQTest_GetCodec_and_PT(char * name, webrtc::NetEqDecoder *codec, int *PT, int frameLen, int *fs, int *bitrate, int *useRed) { argument
812 *PT=NETEQ_CODEC_PCMU_PT;
817 *PT=NETEQ_CODEC_PCMA_PT;
822 *PT=NETEQ_CODEC_PCM16B_PT;
827 *PT=NETEQ_CODEC_PCM16B_WB_PT;
832 *PT=NETEQ_CODEC_PCM16B_SWB32KHZ_PT;
837 *PT=NETEQ_CODEC_PCM16B_SWB48KHZ_PT;
842 *PT=NETEQ_CODEC_G722_PT;
848 *PT
[all...]
/external/clang/lib/Sema/
H A DSemaPseudoObject.cpp509 const ObjCObjectPointerType *PT = local
513 if (PT->isObjCClassType() &&
524 return S.LookupMethodInObjectType(sel, PT->getPointeeType(), true);
528 if (const ObjCObjectPointerType *PT =
530 return S.LookupMethodInObjectType(sel, PT->getPointeeType(), true);

Completed in 4797 milliseconds

123