| /freebsd/crypto/krb5/src/lib/crypto/crypto_tests/ |
| H A D | camellia-expect-vt.txt | 7 PT=80000000000000000000000000000000 11 PT=40000000000000000000000000000000 15 PT=20000000000000000000000000000000 19 PT=10000000000000000000000000000000 23 PT=08000000000000000000000000000000 27 PT=04000000000000000000000000000000 31 PT=02000000000000000000000000000000 35 PT=01000000000000000000000000000000 39 PT=00800000000000000000000000000000 43 PT=00400000000000000000000000000000 [all …]
|
| H A D | expect-vt.txt | 7 PT=80000000000000000000000000000000 11 PT=40000000000000000000000000000000 15 PT=20000000000000000000000000000000 19 PT=10000000000000000000000000000000 23 PT=08000000000000000000000000000000 27 PT=04000000000000000000000000000000 31 PT=02000000000000000000000000000000 35 PT=01000000000000000000000000000000 39 PT=00800000000000000000000000000000 43 PT=00400000000000000000000000000000 [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-stress/ |
| H A D | llvm-stress.cpp | 159 Modifier(BasicBlock *Block, PieceTable *PT, Random *R) in Modifier() 160 : BB(Block), PT(PT), Ran(R), Context(BB->getContext()) { in Modifier() 211 assert(PT->size()); in getRandomVal() 212 return PT->at(getRandom() % PT->size()); in getRandomVal() 231 for (unsigned i=0; i<PT->size(); ++i) { in getRandomValue() 232 Value *V = PT->at((index + i) % PT->size()); in getRandomValue() 262 for (unsigned i=0; i<PT->size(); ++i) { in getRandomPointerValue() 263 Value *V = PT->at((index + i) % PT->size()); in getRandomPointerValue() 273 for (unsigned i=0; i<PT->size(); ++i) { in getRandomVectorValue() 274 Value *V = PT->at((index + i) % PT->size()); in getRandomVectorValue() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AVR/ |
| H A D | AVR.h | 56 auto *PT = cast<PointerType>(V->getType()); in isProgramMemoryAddress() local 57 assert(PT != nullptr && "unexpected MemSDNode"); in isProgramMemoryAddress() 58 return PT->getAddressSpace() == ProgramMemory || in isProgramMemoryAddress() 59 PT->getAddressSpace() == ProgramMemory1 || in isProgramMemoryAddress() 60 PT->getAddressSpace() == ProgramMemory2 || in isProgramMemoryAddress() 61 PT->getAddressSpace() == ProgramMemory3 || in isProgramMemoryAddress() 62 PT->getAddressSpace() == ProgramMemory4 || in isProgramMemoryAddress() 63 PT->getAddressSpace() == ProgramMemory5; in isProgramMemoryAddress() 67 auto *PT = cast<PointerType>(V->getType()); in getAddressSpace() local 68 assert(PT != nullptr && "unexpected MemSDNode"); in getAddressSpace() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | CocoaConventions.cpp | 40 const PointerType* PT = RetTy->castAs<PointerType>(); in isRefType() local 41 if (!PT || !PT->getPointeeType().getUnqualifiedType()->isVoidType()) in isRefType() 68 const ObjCObjectPointerType *PT = Ty->getAs<ObjCObjectPointerType>(); in isCocoaObjectRef() local 71 if (!PT) in isCocoaObjectRef() 76 if (PT->isObjCIdType() || PT->isObjCQualifiedIdType() || in isCocoaObjectRef() 77 PT->isObjCClassType() || PT->isObjCQualifiedClassType()) in isCocoaObjectRef() 82 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); in isCocoaObjectRef()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUPromoteKernelArguments.cpp | 101 PointerType *PT = dyn_cast<PointerType>(Ptr->getType()); in promotePointer() local 102 if (!PT) in promotePointer() 105 if (PT->getAddressSpace() == AMDGPUAS::FLAT_ADDRESS || in promotePointer() 106 PT->getAddressSpace() == AMDGPUAS::GLOBAL_ADDRESS || in promotePointer() 107 PT->getAddressSpace() == AMDGPUAS::CONSTANT_ADDRESS) in promotePointer() 110 if (PT->getAddressSpace() != AMDGPUAS::FLAT_ADDRESS) in promotePointer() 119 PointerType::get(PT->getContext(), AMDGPUAS::GLOBAL_ADDRESS); in promotePointer() 123 B.CreateAddrSpaceCast(Cast, PT, Twine(Ptr->getName(), ".flat")); in promotePointer() 170 PointerType *PT = dyn_cast<PointerType>(Arg.getType()); in run() local 171 if (!PT || (PT->getAddressSpace() != AMDGPUAS::FLAT_ADDRESS && in run() [all …]
|
| H A D | AMDGPULowerKernelArguments.cpp | 118 if (PointerType *PT = dyn_cast<PointerType>(ArgTy)) { in lowerKernelArguments() local 123 if ((PT->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS || in lowerKernelArguments() 124 PT->getAddressSpace() == AMDGPUAS::REGION_ADDRESS) && in lowerKernelArguments()
|
| H A D | AMDGPUPerfHintAnalysis.cpp | 334 if (auto *PT = dyn_cast<PointerType>(V->getType())) { in isGlobalAddr() local 335 unsigned As = PT->getAddressSpace(); in isGlobalAddr() 343 if (auto *PT = dyn_cast<PointerType>(V->getType())) in isLocalAddr() local 344 return PT->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS; in isLocalAddr()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | BuiltinGCs.cpp | 78 const PointerType *PT = cast<PointerType>(Ty); in isGCManagedPointer() local 84 return (1 == PT->getAddressSpace()); in isGCManagedPointer() 111 const PointerType *PT = cast<PointerType>(Ty); in isGCManagedPointer() local 113 return (1 == PT->getAddressSpace()); in isGCManagedPointer()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Support/ |
| H A D | RISCVVIntrinsicUtils.h | 173 BaseTypeModifier PT, 176 : PT(static_cast<uint8_t>(PT)), VTM(static_cast<uint8_t>(VTM)), in PT() function 178 constexpr PrototypeDescriptor(uint8_t PT, uint8_t VTM, uint8_t TM) in PrototypeDescriptor() 179 : PT(PT), VTM(VTM), TM(TM) {} in PrototypeDescriptor() 181 uint8_t PT = static_cast<uint8_t>(BaseTypeModifier::Invalid); member 189 return PD.PT == PT && PD.VTM == VTM && PD.TM == TM; 192 return std::tie(PT, VTM, TM) < std::tie(PD.PT, PD.VTM, PD.TM);
|
| /freebsd/contrib/llvm-project/clang/lib/Support/ |
| H A D | RISCVVIntrinsicUtils.cpp | 408 BaseTypeModifier PT = BaseTypeModifier::Invalid; in parsePrototypeDescriptor() local 418 PT = BaseTypeModifier::Scalar; in parsePrototypeDescriptor() 421 PT = BaseTypeModifier::Vector; in parsePrototypeDescriptor() 424 PT = BaseTypeModifier::Vector; in parsePrototypeDescriptor() 428 PT = BaseTypeModifier::Vector; in parsePrototypeDescriptor() 432 PT = BaseTypeModifier::Vector; in parsePrototypeDescriptor() 436 PT = BaseTypeModifier::Vector; in parsePrototypeDescriptor() 440 PT = BaseTypeModifier::Void; in parsePrototypeDescriptor() 443 PT = BaseTypeModifier::SizeT; in parsePrototypeDescriptor() 446 PT = BaseTypeModifier::Ptrdiff; in parsePrototypeDescriptor() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ScanfFormatString.cpp | 425 QualType PT = QT->getPointeeType(); in fixType() local 428 if (const EnumType *ETy = PT->getAs<EnumType>()) { in fixType() 432 PT = ETy->getDecl()->getIntegerType(); in fixType() 435 const BuiltinType *BT = PT->getAs<BuiltinType>(); in fixType() 440 if (PT->isAnyCharacterType()) { in fixType() 442 if (PT->isWideCharType()) in fixType() 504 namedTypeToLengthModifier(PT, LM); in fixType() 514 if (PT->isRealFloatingType()) in fixType() 516 else if (PT->isSignedIntegerType()) in fixType() 518 else if (PT->isUnsignedIntegerType()) in fixType()
|
| H A D | FormatString.cpp | 333 const PointerType *PT = argTy->getAs<PointerType>(); in matchesType() local 334 if (!PT) in matchesType() 338 if (PT->getPointeeType().isConstQualified()) in matchesType() 341 argTy = PT->getPointeeType(); in matchesType() 524 if (const auto *PT = argTy->getAs<PointerType>(); in matchesType() local 525 PT && PT->getPointeeType()->isCharType()) in matchesType() 530 if (const auto *PT = argTy->getAs<PointerType>(); in matchesType() local 531 PT && in matchesType() 532 C.hasSameUnqualifiedType(PT->getPointeeType(), C.getWideCharType())) in matchesType() 557 if (const auto *PT = argTy->getAs<PointerType>()) { in matchesType() local [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | Context.cpp | 496 PrimType PT = T.value_or(PT_Ptr); in getOrCreateFunction() local 497 Descriptor *Desc = P->createDescriptor(PD, PT); in getOrCreateFunction() 498 ParamDescriptors.insert({ParamOffset, {PT, Desc}}); in getOrCreateFunction() 500 ParamOffset += align(primSize(PT)); in getOrCreateFunction() 501 ParamTypes.push_back(PT); in getOrCreateFunction() 524 PrimType PT = T.value_or(PT_Ptr); in getOrCreateObjCBlock() local 525 Descriptor *Desc = P->createDescriptor(PD, PT); in getOrCreateObjCBlock() 526 ParamDescriptors.insert({ParamOffset, {PT, Desc}}); in getOrCreateObjCBlock() 528 ParamOffset += align(primSize(PT)); in getOrCreateObjCBlock() 529 ParamTypes.push_back(PT); in getOrCreateObjCBlock()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/ |
| H A D | Patterns.cpp | 30 PatternType PT(PT_ValueType); in get() local 31 PT.Data.Def = R; in get() 32 return PT; in get() 44 PatternType PT(PT_TypeOf); in get() local 45 PT.Data.Str = RawOpName.drop_front(1); in get() 46 return PT; in get() 71 PatternType PT(PT_VariadicPack); in get() local 72 PT.Data.VPTI = {unsigned(Min), unsigned(Max)}; in get() 73 return PT; in get() 81 PatternType PT(PT_TypeOf); in getTypeOf() local [all …]
|
| /freebsd/contrib/ofed/opensm/include/complib/ |
| H A D | cl_types_osd.h | 72 #define PT(exp) __builtin_expect( ((uintptr_t)(exp)), 1 ) macro 75 #define PT(exp) (exp)
|
| /freebsd/packages/libipt/ |
| H A D | libipt.ucl | 3 The Intel Processor Trace (Intel PT) Decoder Library is Intel's reference 4 implementation for decoding Intel PT. It can be used as a standalone library
|
| /freebsd/contrib/processor-trace/libipt/include/ |
| H A D | intel-pt.h.in | 40 /* Intel(R) Processor Trace (Intel PT) decoder library. 240 /** A collection of Intel PT errata. */ 261 * Processor Trace (Intel(R) PT) packet before the LBR or Intel PT 266 /** SKD007: Intel(R) PT Buffer Overflow May Result in Incorrect Packets. 270 * Under complex micro-architectural conditions, an Intel PT (Processor 281 * If VM entry clears Intel(R) PT (Intel Processor Trace) 289 /** SKD010: Intel(R) PT FUP May be Dropped After OVF. 293 * Some Intel PT (Intel Processor Trace) OVF (Overflow) packets may not 299 /** SKL014: Intel(R) PT TIP.PGD May Not Have Target IP Payload. 303 * When Intel PT (Intel Processor Trace) is enabled and a direct [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
| H A D | TraceIntelPTProperties.td | 8 Desc<"Specify how many instructions following an individual Intel PT " 20 Desc<"Specify how many instructions following an individual Intel PT "
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | NVPTX.cpp | 338 llvm::PointerType *PT, in getNullPointer() argument 341 if (PT->getAddressSpace() != Ctx.getTargetAddressSpace(LangAS::opencl_local)) in getNullPointer() 342 return llvm::ConstantPointerNull::get(PT); in getNullPointer() 345 PT->getContext(), Ctx.getTargetAddressSpace(LangAS::opencl_generic)); in getNullPointer() 347 llvm::ConstantPointerNull::get(NPT), PT); in getNullPointer()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaObjC.cpp | 255 const PointerType *PT = ThrowType->getAs<PointerType>(); in BuildObjCAtThrowStmt() local 256 if (!PT || !PT->getPointeeType()->isVoidType()) in BuildObjCAtThrowStmt() 1486 const auto *PT = T->getAs<ObjCObjectPointerType>(); in isNSStringType() local 1487 if (!PT) in isNSStringType() 1490 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface(); in isNSStringType() 1505 const auto *PT = T->getAs<PointerType>(); in isCFStringType() local 1506 if (!PT) in isCFStringType() 1509 const auto *RT = PT->getPointeeType()->getAs<RecordType>(); in isCFStringType() 1563 ParsedType PT; in handleIBOutletCollection() local 1566 PT = AL.getTypeArg(); in handleIBOutletCollection() [all …]
|
| /freebsd/share/i18n/esdb/ISO646/ |
| H A D | ISO646.alias | 77 PT iso-ir-16 78 PT pt
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | NSErrorChecker.cpp | 298 const ObjCObjectPointerType* PT = in IsNSError() local 301 if (!PT) in IsNSError() 304 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); in IsNSError()
|
| /freebsd/share/i18n/csmapper/EBCDIC/ |
| H A D | UCS%EBCDIC-PT.src | 1 # $NetBSD: UCS%EBCDIC-PT.src,v 1.3 2003/07/14 06:03:41 tshiozak Exp $ 4 NAME "UCS/EBCDIC-PT"
|
| H A D | EBCDIC-PT%UCS.src | 1 # $NetBSD: EBCDIC-PT%UCS.src,v 1.2 2003/07/12 16:11:07 tshiozak Exp $ 4 NAME "EBCDIC-PT/UCS"
|