Searched defs:MP (Results 1 - 25 of 27) sorted by relevance

12

/external/opencv/cv/src/
H A Dcvkalman.cpp45 cvCreateKalman( int DP, int MP, int CP ) argument
53 if( DP <= 0 || MP <= 0 )
65 kalman->MP = MP;
80 CV_CALL( kalman->measurement_matrix = cvCreateMat( MP, DP, CV_32FC1 ));
83 CV_CALL( kalman->measurement_noise_cov = cvCreateMat( MP, MP, CV_32FC1 ));
91 CV_CALL( kalman->gain = cvCreateMat( DP, MP, CV_32FC1 ));
100 CV_CALL( kalman->temp2 = cvCreateMat( MP, DP, CV_32FC1 ));
101 CV_CALL( kalman->temp3 = cvCreateMat( MP, M
[all...]
H A Dcvcondens.cpp50 // MP - dimension of the measurement vector
57 CV_IMPL CvConDensation* cvCreateConDensation( int DP, int MP, int SamplesNum ) argument
65 if( DP < 0 || MP < 0 || SamplesNum < 0 )
73 CD->MP = MP;
109 // MP - dimension of the measurement vector
/external/llvm/unittests/Transforms/Utils/
H A DMemorySSA.cpp96 MemoryPhi *MP = MSSA.createMemoryPhi(Merge); local
98 MP->addIncoming(StoreAccess, Left);
99 MP->addIncoming(MSSA.getLiveOnEntryDef(), Right);
103 MSSA.createMemoryAccessInBB(LoadInst, MP, Merge, MemorySSA::Beginning));
139 MemoryPhi *MP = cast<MemoryPhi>(DefiningAccess); local
141 for (auto &Op : MP->incoming_values())
144 MP->replaceAllUsesWith(MSSA.getLiveOnEntryDef());
148 MSSA.removeMemoryAccess(MP);
/external/ltp/testcases/realtime/func/pi-tests/
H A Dtestpi-7.c190 #define MP "\t\t\t" macro
199 debug(DBG_INFO, MP "thread %d writing flag\n", t->id);
203 debug(DBG_DEBUG, MP "ready to start work\n");
210 debug(DBG_DEBUG, MP "done working -- time to sleep\n");
212 debug(DBG_INFO, MP "thread %d resetting m_flag\n",
219 #undef MP macro
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp138 LLVMModuleProviderRef MP,
142 reinterpret_cast<LLVMModuleRef>(MP),
147 LLVMModuleProviderRef MP,
151 reinterpret_cast<LLVMModuleRef>(MP),
156 LLVMModuleProviderRef MP,
161 reinterpret_cast<LLVMModuleRef>(MP),
209 void LLVMAddModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP){ argument
211 LLVMAddModule(EE, reinterpret_cast<LLVMModuleRef>(MP));
223 LLVMModuleProviderRef MP,
226 return LLVMRemoveModule(EE, reinterpret_cast<LLVMModuleRef>(MP), OutMo
137 LLVMCreateExecutionEngine(LLVMExecutionEngineRef *OutEE, LLVMModuleProviderRef MP, char **OutError) argument
146 LLVMCreateInterpreter(LLVMExecutionEngineRef *OutInterp, LLVMModuleProviderRef MP, char **OutError) argument
155 LLVMCreateJITCompiler(LLVMExecutionEngineRef *OutJIT, LLVMModuleProviderRef MP, unsigned OptLevel, char **OutError) argument
222 LLVMRemoveModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP, LLVMModuleRef *OutMod, char **OutError) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGCXXABI.cpp147 llvm::Constant *CGCXXABI::EmitMemberPointer(const APValue &MP, QualType MPT) { argument
283 CharUnits CGCXXABI::getMemberPointerPathAdjustment(const APValue &MP) { argument
286 const ValueDecl *MPD = MP.getMemberPointerDecl();
288 ArrayRef<const CXXRecordDecl*> Path = MP.getMemberPointerPath();
289 bool DerivedMember = MP.isMemberPointerToDerivedMember();
H A DItaniumCXXABI.cpp140 llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT) override;
643 /// decreased; and conversely, when converting a derived MP to a base MP
650 /// The standard forbids (at run time) casting a derived MP to a base
651 /// MP when the derived MP does not point to a member of the base.
843 llvm::Constant *ItaniumCXXABI::EmitMemberPointer(const APValue &MP, argument
846 const ValueDecl *MPD = MP.getMemberPointerDecl();
850 CharUnits ThisAdjustment = getMemberPointerPathAdjustment(MP);
H A DMicrosoftCXXABI.cpp600 llvm::Constant *MP);
628 llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT) override;
2615 llvm::Constant *MicrosoftCXXABI::EmitMemberPointer(const APValue &MP, argument
2618 const ValueDecl *MPD = MP.getMemberPointerDecl();
2623 ArrayRef<const CXXRecordDecl *> MemberPointerPath = MP.getMemberPointerPath();
2640 bool DerivedMember = MP.isMemberPointerToDerivedMember();
/external/pcre/dist2/src/
H A Dpcre2_jit_test.c125 #define MP (PCRE2_MULTILINE | PCRE2_UCP) macro
196 { MP, A, 0, 0, "\\B", "_\xa1" },
197 { MP, A, 0, 0 | F_PROPERTY, "\\b_\\b[,A]\\B", "_," },
/external/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp524 for (const auto &MP : Matchers) {
526 Timer.setBucket(&TimeByBucket[MP.second->getID()]);
528 if (MP.first.matches(Node, this, &Builder)) {
529 MatchVisitor Visitor(ActiveASTContext, MP.second);
548 auto &MP = Matchers[I]; local
550 Timer.setBucket(&TimeByBucket[MP.second->getID()]);
552 if (MP.first.matchesNoKindCheck(DynNode, this, &Builder)) {
553 MatchVisitor Visitor(ActiveASTContext, MP.second);
/external/llvm/include/llvm/IR/
H A DModule.h844 inline Module *unwrap(LLVMModuleProviderRef MP) { argument
845 return reinterpret_cast<Module*>(MP);
/external/llvm/include/llvm/Transforms/Utils/
H A DMemorySSA.h790 MemoryPhi *MP = dyn_cast<MemoryPhi>(Access); local
791 assert(MP && "Tried to get phi arg block when not iterating over a PHI");
792 return MP->getIncomingBlock(ArgNo);
798 if (MemoryPhi *MP = dyn_cast<MemoryPhi>(Access))
799 return MP->getIncomingValue(ArgNo);
805 if (MemoryPhi *MP = dyn_cast<MemoryPhi>(Access)) {
806 if (++ArgNo >= MP->getNumIncomingValues()) {
/external/llvm/lib/IR/
H A DLegacyPassManager.cpp339 /// required by module pass MP. Instantiate analysis pass, by using
341 Pass* getOnTheFlyPass(Pass *MP, AnalysisID PI, Function &F) override;
354 ModulePass *MP = getContainedPass(Index);
355 MP->dumpPassStructure(Offset + 1);
357 OnTheFlyManagers.find(MP);
360 dumpLastUses(MP, Offset+1);
431 MPPassManager *MP = static_cast<MPPassManager *>(PassManagers[N]);
432 return MP;
1591 ModulePass *MP = getContainedPass(Index); local
1594 dumpPassInfo(MP, EXECUTION_MS
1678 getOnTheFlyPass(Pass *MP, AnalysisID PI, Function &F) argument
[all...]
H A DCore.cpp3121 void LLVMDisposeModuleProvider(LLVMModuleProviderRef MP) { argument
3122 delete unwrap(MP);
/external/llvm/lib/Transforms/Utils/
H A DMemorySSA.cpp581 const auto *MP = cast<MemoryPhi>(Replacee); local
585 for (const Use &Arg : MP->operands()) {
587 !DT->dominates(Replacer->getBlock(), MP->getIncomingBlock(Arg)))
595 static MemoryAccess *onlySingleValue(MemoryPhi *MP) { argument
598 for (auto &Arg : MP->operands()) {
641 if (MemoryPhi *MP = dyn_cast<MemoryPhi>(MA)) {
647 NewDefTarget = onlySingleValue(MP);
648 assert((NewDefTarget || MP->use_empty()) &&
722 if (MemoryPhi *MP = getMemoryAccess(&B)) {
723 for (User *U : MP
[all...]
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h59 auto MP = getMethodKind(); local
60 return MP != MethodKind::Vanilla && MP != MethodKind::Friend &&
61 MP != MethodKind::Static;
66 auto MP = getMethodKind(); local
67 return MP == MethodKind::IntroducingVirtual ||
68 MP == MethodKind::PureIntroducingVirtual;
/external/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp651 MachineOperand &MP = MI.getOperand(1); // Predicate register local
687 genCondTfrFor(MI.getOperand(2), At, DR, DSR, MP, true, ReadUndef, false);
689 genCondTfrFor(MI.getOperand(3), At, DR, DSR, MP, false, ReadUndef, true);
954 MachineOperand &MP = TfrI.getOperand(1); local
967 unsigned PredR = MP.getReg();
1054 predicateAt(MD, *DefI, PastDefIt, MP, Cond, UpdRegs);
1056 predicateAt(MD, *DefI, TfrIt, MP, Cond, UpdRegs);
/external/opencv/cv/include/
H A Dcvtypes.h250 int MP; member in struct:CvConDensation
273 int MP; /* number of measurement vector dimensions */ member in struct:CvKalman
/external/swiftshader/third_party/LLVM/include/llvm-c/
H A DCore.h1090 LLVMPassManagerRef LLVMCreateFunctionPassManager(LLVMModuleProviderRef MP);
1166 inline Module *unwrap(LLVMModuleProviderRef MP) { argument
1167 return reinterpret_cast<Module*>(MP);
/external/swiftshader/third_party/subzero/src/
H A DPNaClTranslator.cpp3051 ModuleValuesymtabParser(unsigned BlockID, ModuleParser *MP) argument
3052 : ValuesymtabParser(BlockID, MP),
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DCore.cpp2257 void LLVMDisposeModuleProvider(LLVMModuleProviderRef MP) { argument
2258 delete unwrap(MP);
/external/robolectric/v1/lib/main/
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 651 milliseconds

12