Searched defs:PR (Results 1 - 18 of 18) sorted by relevance

/external/clang/test/SemaCXX/
H A Daccess-control-check.cpp14 int PR() { return iP + PPR(); } // expected-error 2 {{private member of 'P'}} function in class:N
/external/clang/test/CodeGenCXX/
H A Dnested-base-member-access.cpp38 void PR() { function in struct:N
51 n1.PR();
H A Dconstructor-init.cpp36 void PR() { function in struct:N
61 n1.PR();
/external/llvm/utils/TableGen/
H A DFastISelEmitter.cpp302 const std::vector<std::string> &PR) const {
303 assert(PR.size() == Operands.size());
306 if (PR[i] != "")
344 void PrintManglingSuffix(raw_ostream &OS, const std::vector<std::string> &PR, argument
348 if (PR[i] != "")
/external/llvm/lib/Target/Hexagon/
H A DHexagonPeephole.cpp269 unsigned PR = 1, S1 = 2, S2 = 3; // Operand indices. local
284 unsigned PSrc = MI->getOperand(PR).getReg();
286 MI->getOperand(PR).setReg(POrig);
H A DHexagonHardwareLoops.cpp1459 unsigned PR = PN->getOperand(0).getReg(); local
1460 const TargetRegisterClass *RC = MRI->getRegClass(PR);
/external/llvm/tools/llc/
H A Dllc.cpp348 const PassRegistry *PR = PassRegistry::getPassRegistry(); local
350 const PassInfo *PI = PR->getPassInfo(StartAfter);
358 const PassInfo *PI = PR->getPassInfo(StopAfter);
/external/llvm/lib/CodeGen/
H A DRegisterScavenging.cpp58 BitVector PR = MBB->getParent()->getFrameInfo()->getPristineRegs(MBB); local
59 for (int I = PR.find_first(); I>0; I = PR.find_next(I))
H A DPasses.cpp489 const PassRegistry *PR = PassRegistry::getPassRegistry(); local
490 const PassInfo *TPI = PR->getPassInfo(PrintMachineInstrs.getValue());
491 const PassInfo *IPI = PR->getPassInfo(StringRef("machineinstr-printer"));
H A DRegAllocPBQP.cpp830 inline raw_ostream &operator<<(raw_ostream &OS, const PrintNodeInfo &PR) { argument
831 PR.print(OS);
H A DMachineVerifier.cpp687 BitVector PR = MFI->getPristineRegs(MBB); local
688 for (int I = PR.find_first(); I>0; I = PR.find_next(I)) {
/external/clang/include/clang/Lex/
H A DPreprocessingRecord.h35 void* operator new(size_t bytes, clang::PreprocessingRecord& PR,
39 void operator delete(void* ptr, clang::PreprocessingRecord& PR,
101 void* operator new(size_t bytes, PreprocessingRecord& PR, argument
103 return ::operator new(bytes, PR, alignment);
110 void operator delete(void* ptr, PreprocessingRecord& PR, argument
112 return ::operator delete(ptr, PR, alignment);
527 inline void* operator new(size_t bytes, clang::PreprocessingRecord& PR, argument
529 return PR.Allocate(bytes, alignment);
532 inline void operator delete(void* ptr, clang::PreprocessingRecord& PR, argument
534 PR
[all...]
/external/llvm/include/llvm/Target/
H A DTargetRegisterInfo.h944 static inline raw_ostream &operator<<(raw_ostream &OS, const PrintReg &PR) { argument
945 PR.print(OS);
968 static inline raw_ostream &operator<<(raw_ostream &OS, const PrintRegUnit &PR) { argument
969 PR.print(OS);
983 const PrintVRegOrUnit &PR) {
984 PR.print(OS);
982 operator <<(raw_ostream &OS, const PrintVRegOrUnit &PR) argument
/external/opencv/cv/src/
H A Dcvfloodfill.cpp144 int k, YC, PL, PR, dir; local
145 ICV_POP( YC, L, R, PL, PR, dir );
151 {dir, PR + 1, R + _8_connectivity}
276 int k, YC, PL, PR, dir; local
277 ICV_POP( YC, L, R, PL, PR, dir );
283 {dir, PR + 1, R + _8_connectivity}
453 int k, YC, PL, PR, dir, curstep; local
454 ICV_POP( YC, L, R, PL, PR, dir );
460 {dir, PR + 1, R + _8_connectivity}
759 int k, YC, PL, PR, di local
[all...]
/external/opencv/cvaux/src/
H A Dcvsegment.cpp123 int k, YC, PL, PR, flag/*, curstep*/; local
125 POP( YC, L, R, PL, PR, flag );
127 int data[][3] = { {-flag, L, R}, {flag, L, PL-1}, {flag,PR+1,R}};
/external/llvm/lib/IR/
H A DVerifier.cpp2215 PointerType *PR = dyn_cast<PointerType>(R); local
2216 if (!PL || !PR)
2218 return PL->getAddressSpace() == PR->getAddressSpace();
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp9375 MCSymbol *PR = getParser().getContext().GetOrCreateSymbol(Name); local
9376 getTargetStreamer().emitPersonality(PR);
/external/clang/lib/Sema/
H A DSemaExpr.cpp3854 ExprResult PR = S.CheckPlaceholderExpr(V.get());
3855 if (PR.isInvalid()) return QualType();
3856 if (PR.get() != V.get()) {
3857 V = PR;
9438 ExprResult PR = S.CheckPlaceholderExpr(Op); local
9439 if (PR.isInvalid()) return QualType();
9440 return CheckIncrementDecrementOperand(S, PR.get(), VK, OK, OpLoc,
9791 ExprResult PR = S.CheckPlaceholderExpr(Op); local
9792 if (PR.isInvalid()) return QualType();
9793 if (PR
[all...]

Completed in 951 milliseconds