Searched defs:PA (Results 1 - 12 of 12) sorted by relevance

/external/arduino/hardware/arduino/cores/arduino/
H A Dpins_arduino.c68 #define PA 1 macro
155 PA , // PA 0 ** 22 ** D22
156 PA , // PA 1 ** 23 ** D23
157 PA , // PA 2 ** 24 ** D24
158 PA , // PA 3 ** 25 ** D25
159 PA , // P
[all...]
/external/llvm/lib/Transforms/ObjCARC/
H A DDependencyAnalysis.cpp36 ProvenanceAnalysis &PA,
52 AliasAnalysis::ModRefBehavior MRB = PA.getAA()->getModRefBehavior(CS);
59 if (IsPotentialRetainableObjPtr(Op, *PA.getAA()) && PA.related(Ptr, Op))
73 ProvenanceAnalysis &PA, InstructionClass Class) {
84 if (!IsPotentialRetainableObjPtr(ICI->getOperand(1), *PA.getAA()))
91 if (IsPotentialRetainableObjPtr(Op, *PA.getAA()) && PA.related(Ptr, Op))
101 return IsPotentialRetainableObjPtr(Op, *PA.getAA()) && PA
35 CanAlterRefCount(const Instruction *Inst, const Value *Ptr, ProvenanceAnalysis &PA, InstructionClass Class) argument
72 CanUse(const Instruction *Inst, const Value *Ptr, ProvenanceAnalysis &PA, InstructionClass Class) argument
117 Depends(DependenceKind Flavor, Instruction *Inst, const Value *Arg, ProvenanceAnalysis &PA) argument
205 FindDependencies(DependenceKind Flavor, const Value *Arg, BasicBlock *StartBB, Instruction *StartInst, SmallPtrSet<Instruction *, 4> &DependingInsts, SmallPtrSet<const BasicBlock *, 4> &Visited, ProvenanceAnalysis &PA) argument
[all...]
H A DObjCARCContract.cpp55 ProvenanceAnalysis PA; member in class:__anon21604::ObjCARCContract
164 DependingInstructions, Visited, PA);
168 DependingInstructions, Visited, PA);
242 if (CanUse(Inst, Load, PA, Class))
328 PA.setAA(&getAnalysis<AliasAnalysis>());
H A DObjCARCOpts.cpp1130 ProvenanceAnalysis PA; member in class:__anon21611::ObjCARCOpt
1618 DependingInstructions, Visited, PA);
1624 DependingInstructions, Visited, PA);
1958 if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
1982 if (CanUse(Inst, Ptr, PA, Class)) {
2010 if (CanUse(Inst, Ptr, PA, Class)) {
2191 if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
2220 if (CanUse(Inst, Ptr, PA, Class)) {
2795 switch (PA.getAA()->alias(Arg, EarlierArg)) {
2824 switch (PA
2943 HasSafePathToPredecessorCall(const Value *Arg, Instruction *Retain, SmallPtrSet<Instruction *, 4> &DepInsts, SmallPtrSet<const BasicBlock *, 4> &Visited, ProvenanceAnalysis &PA) argument
2971 FindPredecessorRetainWithSafePath(const Value *Arg, BasicBlock *BB, Instruction *Autorelease, SmallPtrSet<Instruction *, 4> &DepInsts, SmallPtrSet<const BasicBlock *, 4> &Visited, ProvenanceAnalysis &PA) argument
2998 FindPredecessorAutoreleaseWithSafePath(const Value *Arg, BasicBlock *BB, ReturnInst *Ret, SmallPtrSet<Instruction *, 4> &DepInsts, SmallPtrSet<const BasicBlock *, 4> &V, ProvenanceAnalysis &PA) argument
[all...]
/external/llvm/tools/llvm-prof/
H A Dllvm-prof.cpp241 ProfileAnnotator PA(PI);
244 M.print(outs(), &PA); local
249 (*I)->print(outs(), &PA);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DIvarInvalidationChecker.cpp136 void checkObjCPropertyRefExpr(const ObjCPropertyRefExpr *PA);
630 const ObjCPropertyRefExpr *PA) {
632 if (PA->isExplicitProperty()) {
633 const ObjCPropertyDecl *PD = PA->getExplicitProperty();
643 if (PA->isImplicitProperty()) {
644 const ObjCMethodDecl *MD = PA->getImplicitPropertySetter();
629 checkObjCPropertyRefExpr( const ObjCPropertyRefExpr *PA) argument
/external/llvm/lib/IR/
H A DAttributes.cpp41 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint); local
43 if (!PA) {
47 PA = new EnumAttributeImpl(Kind);
49 PA = new AlignAttributeImpl(Kind, Val);
50 pImpl->AttrsSet.InsertNode(PA, InsertPoint);
54 return Attribute(PA);
64 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint); local
66 if (!PA) {
69 PA = new StringAttributeImpl(Kind, Val);
70 pImpl->AttrsSet.InsertNode(PA, InsertPoin
409 AttributeSetNode *PA = local
527 AttributeSetImpl *PA = pImpl->AttrsLists.FindNodeOrInsertPos(ID, InsertPoint); local
[all...]
H A DCore.cpp1441 void LLVMAddFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA) { argument
1444 AttrBuilder B(PA);
1464 void LLVMRemoveFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA) { argument
1467 AttrBuilder B(PA);
1539 void LLVMAddAttribute(LLVMValueRef Arg, LLVMAttribute PA) { argument
1541 AttrBuilder B(PA);
1545 void LLVMRemoveAttribute(LLVMValueRef Arg, LLVMAttribute PA) { argument
1547 AttrBuilder B(PA);
1749 LLVMAttribute PA) {
1751 AttrBuilder B(PA);
1748 LLVMAddInstrAttribute(LLVMValueRef Instr, unsigned index, LLVMAttribute PA) argument
1758 LLVMRemoveInstrAttribute(LLVMValueRef Instr, unsigned index, LLVMAttribute PA) argument
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp816 static int TopoOrderRC(const void *PA, const void *PB) { argument
817 const CodeGenRegisterClass *A = *(const CodeGenRegisterClass* const*)PA;
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c1049 CAMLprim value llvm_add_function_attr(LLVMValueRef Arg, value PA) { argument
1050 LLVMAddFunctionAttr(Arg, Int32_val(PA));
1062 CAMLprim value llvm_remove_function_attr(LLVMValueRef Arg, value PA) { argument
1063 LLVMRemoveFunctionAttr(Arg, Int32_val(PA));
1090 CAMLprim value llvm_add_param_attr(LLVMValueRef Arg, value PA) { argument
1091 LLVMAddAttribute(Arg, Int32_val(PA));
1096 CAMLprim value llvm_remove_param_attr(LLVMValueRef Arg, value PA) { argument
1097 LLVMRemoveAttribute(Arg, Int32_val(PA));
1199 value PA) {
1200 LLVMAddInstrAttribute(Instr, Int_val(index), Int32_val(PA));
1197 llvm_add_instruction_param_attr(LLVMValueRef Instr, value index, value PA) argument
1205 llvm_remove_instruction_param_attr(LLVMValueRef Instr, value index, value PA) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.util_1.0.200.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1026 milliseconds