HomeSort by: relevance | last modified time | path
    Searched refs:PT (Results 1 - 25 of 121) sorted by relevancy

1 2 3 4 5

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CocoaConventions.cpp 41 const PointerType* PT = RetTy->castAs<PointerType>();
42 if (!PT || !PT->getPointeeType().getUnqualifiedType()->isVoidType())
69 const ObjCObjectPointerType *PT = Ty->getAs<ObjCObjectPointerType>();
72 if (!PT)
77 if (PT->isObjCIdType() || PT->isObjCQualifiedIdType() ||
78 PT->isObjCClassType() || PT->isObjCQualifiedClassType())
83 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
BuiltinGCs.cpp 77 const PointerType *PT = cast<PointerType>(Ty);
83 return (1 == PT->getAddressSpace());
109 const PointerType *PT = cast<PointerType>(Ty);
111 return (1 == PT->getAddressSpace());
  /src/external/apache2/llvm/dist/llvm/tools/llvm-stress/
llvm-stress.cpp 181 Modifier(BasicBlock *Block, PieceTable *PT, Random *R)
182 : BB(Block), PT(PT), Ran(R), Context(BB->getContext()) {}
204 assert(PT->size());
205 return PT->at(getRandom() % PT->size());
224 for (unsigned i=0; i<PT->size(); ++i) {
225 Value *V = PT->at((index + i) % PT->size());
257 for (unsigned i=0; i<PT->size(); ++i)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbsupport/
common-debug.h 91 template<typename PT>
112 scoped_debug_start_end (PT &debug_enabled, const char *module,
189 /* This function is specialized based on the type PT. Returns true if
196 PT &m_debug_enabled;
218 /* Implementation of is_debug_enabled when PT is an invokable type. */
220 template<typename PT>
222 scoped_debug_start_end<PT>::is_debug_enabled () const
227 /* Implementation of is_debug_enabled when PT is 'bool &'. */
241 template<typename PT>
242 static inline scoped_debug_start_end<PT &> ATTRIBUTE_NULL_PRINTF (6, 7
    [all...]
  /src/external/gpl3/gdb/dist/gdbsupport/
common-debug.h 91 template<typename PT>
112 scoped_debug_start_end (PT &debug_enabled, const char *module,
189 /* This function is specialized based on the type PT. Returns true if
196 PT &m_debug_enabled;
218 /* Implementation of is_debug_enabled when PT is an invocable type. */
220 template<typename PT>
222 scoped_debug_start_end<PT>::is_debug_enabled () const
227 /* Implementation of is_debug_enabled when PT is 'bool &'. */
241 template<typename PT>
242 static inline scoped_debug_start_end<PT &> ATTRIBUTE_NULL_PRINTF (6, 7
    [all...]
  /src/games/gomoku/
stoc.c 87 return PT(x, y);
bdisp.c 174 sp = &board[PT(col, row)];
187 if (should_highlight(PT(col, row))) {
215 sp = &board[PT(col, row)];
460 return PT(x, y);
gomoku.h 71 #define PT(x, y) ((x) + (BSZ + 1) * (y))
pickmove.c 92 return PT((BSZ + 1) / 2, (BSZ + 1) / 2);
95 for (spot_index s = PT(BSZ, BSZ) + 1; s-- > PT(1, 1); ) {
122 spot_index os = PT(BSZ, BSZ); /* our spot */
123 spot_index ts = PT(BSZ, BSZ); /* their spot */
124 for (spot_index s = PT(BSZ, BSZ); s-- > PT(1, 1); ) {
362 for (spot_index s = PT(BSZ, BSZ) + 1; s-- > PT(1, 1); ) {
577 for (spot_index s = PT(BSZ, BSZ) + 1; s-- > PT(1, 1); )
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 363 const PointerType *PT = FPT->getParamType(i)->getAs<PointerType>();
364 if (!PT)
367 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().VoidTy)
405 const PointerType *PT = FPT->getParamType(i)->getAs<PointerType>();
406 if (!PT)
409 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().VoidTy)
447 const PointerType *PT = FPT->getParamType(0)->getAs<PointerType>();
448 if (!PT)
451 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().VoidTy)
489 const PointerType *PT = FPT->getParamType(0)->getAs<PointerType>()
    [all...]
NSErrorChecker.cpp 297 const ObjCObjectPointerType* PT =
300 if (!PT)
303 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
MallocSizeofChecker.cpp 162 static bool compatibleWithArrayType(ASTContext &C, QualType PT, QualType T) {
166 if (typesCompatible(C, PT, AT->getElementType()))
  /src/external/apache2/llvm/dist/clang/lib/AST/
ScanfFormatString.cpp 423 QualType PT = QT->getPointeeType();
426 if (const EnumType *ETy = PT->getAs<EnumType>()) {
430 PT = ETy->getDecl()->getIntegerType();
433 const BuiltinType *BT = PT->getAs<BuiltinType>();
438 if (PT->isAnyCharacterType()) {
440 if (PT->isWideCharType())
503 if (isa<TypedefType>(PT) && (LangOpt.C99 || LangOpt.CPlusPlus11))
504 namedTypeToLengthModifier(PT, LM);
514 if (PT->isRealFloatingType())
516 else if (PT->isSignedIntegerType()
    [all...]
FormatString.cpp 327 const PointerType *PT = argTy->getAs<PointerType>();
328 if (!PT)
332 if (PT->getPointeeType().isConstQualified())
335 argTy = PT->getPointeeType();
416 const PointerType *PT = argTy->getAs<PointerType>();
417 if (!PT)
419 QualType pointeeTy = PT->getPointeeType();
435 const PointerType *PT = argTy->getAs<PointerType>();
436 if (!PT)
439 C.getCanonicalType(PT->getPointeeType()).getUnqualifiedType()
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mmu/
vmm.h 14 * is why there's multiple PT pointers/refcounts here.
16 struct nvkm_mmu_pt *pt[2]; member in struct:nvkm_vmm_pt
19 /* Page size handled by this PT.
98 u8 bits; /* VMA bits covered by PT. */
100 u32 align; /* PT address alignment. */
290 #define VMM_MAP_ITER(VMM,PT,PTEI,PTEN,MAP,FILL,BASE,SIZE,NEXT) do { \
291 nvkm_kmap((PT)->memory); \
306 FILL(VMM, PT, PTEI, _ptes, MAP, _addr); \
310 nvkm_done((PT)->memory); \
313 #define VMM_MAP_ITER_MEM(VMM,PT,PTEI,PTEN,MAP,FILL)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/Disassembler/
WebAssemblyDisassembler.cpp 172 for (auto PT = PrefixTable; PT->Table; PT++) {
173 if (PT->Prefix == Opc) {
174 WasmInst = PT->Table;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPerfHintAnalysis.cpp 298 if (auto PT = dyn_cast<PointerType>(V->getType())) {
299 unsigned As = PT->getAddressSpace();
307 if (auto PT = dyn_cast<PointerType>(V->getType()))
308 return PT->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS;
339 if (auto PT = dyn_cast<PointerType>(V->getType())) {
340 unsigned As = PT->getAddressSpace();
AMDGPULowerKernelArguments.cpp 120 if (PointerType *PT = dyn_cast<PointerType>(ArgTy)) {
125 if ((PT->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS ||
126 PT->getAddressSpace() == AMDGPUAS::REGION_ADDRESS) &&
AMDGPUPrintfRuntimeBinding.cpp 137 const PointerType *PT = dyn_cast<PointerType>(OpType);
138 if (!PT || PT->getAddressSpace() != AMDGPUAS::CONSTANT_ADDRESS)
140 Type *ElemType = PT->getContainedType(0);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
PredicateInfo.h 107 PredicateBase(PredicateType PT, Value *Op, Value *Condition)
108 : Type(PT), OriginalOp(Op), Condition(Condition) {}
  /src/sys/arch/amd64/include/
ptrace.h 125 CONCAT(CONCAT(PT, ELFSIZE), _GETXSTATE), name, \
  /src/sys/arch/i386/include/
ptrace.h 170 CONCAT(CONCAT(PT, ELFSIZE), _GETXSTATE), name, \
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXType.cpp 986 static long long validateFieldParentType(CXCursor PC, CXType PT){
1000 QualType RT = GetQualType(PT);
1012 long long clang_Type_getOffsetOf(CXType PT, const char *S) {
1013 // check that PT is not incomplete/dependent
1014 CXCursor PC = clang_getTypeDeclaration(PT);
1015 long long Error = validateFieldParentType(PC,PT);
1021 ASTContext &Ctx = cxtu::getASTUnit(GetTU(PT))->getASTContext();
1058 CXType PT = clang_getCursorType(PC);
1059 long long Error = validateFieldParentType(PC,PT);
1228 unsigned clang_Type_visitFields(CXType PT,
    [all...]
  /src/external/bsd/pcc/dist/pcc/arch/amd64/
code.c 408 #define PT(x)
410 #define PT(x) printf(".type __pcc_" x ",@function\n")
417 PT("strif");
429 PT("strif");
441 PT("2fpref");
452 PT("1fpref");
460 PT("1regref");
468 PT("2regref");
476 PT("memref");
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
RetainCountDiagnostics.cpp 87 QualType PT = QT->getPointeeType();
88 if (!PT.isNull() && !QT->getAs<TypedefType>())
89 if (const auto *RD = PT->getAsCXXRecordDecl())
281 const ObjCObjectPointerType *PT = cast<ObjCObjectPointerType>(T);
282 os << "an instance of " << PT->getPointeeType().getAsString()

Completed in 41 milliseconds

1 2 3 4 5