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

/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/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/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/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/quake/quake/src/WinQuake/
H A Dvid_sunxil.cpp156 #define MP(a) (int)((current_pixel_multiply)?((a)/current_pixel_multiply):(a)) macro
256 vid.width = MP(wattr.width) & ~3;
257 vid.height = MP(wattr.height);
522 vid.width = MP(desired_width);
523 vid.height = MP(desired_height);
982 vid.width = MP(config_notify_width) & ~3;
983 vid.height = MP(config_notify_height);
1054 vid.width = MP(config_notify_width) & ~3;
1055 vid.height = MP(config_notify_height);
/external/llvm/lib/VMCore/
H A DCore.cpp2257 void LLVMDisposeModuleProvider(LLVMModuleProviderRef MP) { argument
2258 delete unwrap(MP);

Completed in 472 milliseconds