Searched defs:DP (Results 1 - 11 of 11) 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 )
58 CP = DP;
64 kalman->DP = DP;
68 CV_CALL( kalman->state_pre = cvCreateMat( DP, 1, CV_32FC1 ));
71 CV_CALL( kalman->state_post = cvCreateMat( DP, 1, CV_32FC1 ));
74 CV_CALL( kalman->transition_matrix = cvCreateMat( DP, DP, CV_32FC1 ));
77 CV_CALL( kalman->process_noise_cov = cvCreateMat( DP, D
[all...]
H A Dcvcondens.cpp49 // DP - dimension of the dynamical vector
57 CV_IMPL CvConDensation* cvCreateConDensation( int DP, int MP, int SamplesNum ) argument
65 if( DP < 0 || MP < 0 || SamplesNum < 0 )
72 CD->DP = DP;
77 CV_CALL( CD->flSamples[0] = (float *) cvAlloc( sizeof( float ) * SamplesNum * DP ));
78 CV_CALL( CD->flNewSamples[0] = (float *) cvAlloc( sizeof( float ) * SamplesNum * DP ));
83 CD->flSamples[i] = CD->flSamples[i - 1] + DP;
84 CD->flNewSamples[i] = CD->flNewSamples[i - 1] + DP;
87 CV_CALL( CD->State = (float *) cvAlloc( sizeof( float ) * DP ));
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfDocumentCatalogActionsDictionary_autogen.cpp59 SkPdfDictionary* SkPdfDocumentCatalogActionsDictionary::DP(SkPdfNativeDoc* doc) { function in class:SkPdfDocumentCatalogActionsDictionary
60 SkPdfNativeObject* ret = get("DP", "");
68 return get("DP", "") != NULL;
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfDocumentCatalogActionsDictionary_autogen.cpp59 SkPdfDictionary* SkPdfDocumentCatalogActionsDictionary::DP(SkPdfNativeDoc* doc) { function in class:SkPdfDocumentCatalogActionsDictionary
60 SkPdfNativeObject* ret = get("DP", "");
68 return get("DP", "") != NULL;
/external/clang/lib/Parse/
H A DParser.cpp990 Decl *DP = Actions.HandleDeclarator(ParentScope, D, local
992 D.complete(DP);
998 if (DP) {
999 FunctionDecl *FnD = DP->getAsFunction();
1001 Actions.MarkAsLateParsedTemplate(FnD, DP, Toks);
1003 return DP;
/external/libnl/include/linux/
H A Dpkt_sched.h213 __u32 DP; /* upto 2^32 DPs */ member in struct:tc_gred_qopt
/external/opencv/cv/include/
H A Dcvtypes.h251 int DP; member in struct:CvConDensation
274 int DP; /* number of state vector dimensions */ member in struct:CvKalman
/external/iproute2/include/linux/
H A Dpkt_sched.h268 __u32 DP; /* up to 2^32 DPs */ member in struct:tc_gred_qopt
/external/kernel-headers/original/uapi/linux/
H A Dpkt_sched.h280 __u32 DP; /* up to 2^32 DPs */ member in struct:tc_gred_qopt
/external/clang/lib/Sema/
H A DSemaTemplate.cpp6338 Decl *DP = HandleDeclarator(ParentScope, D, local
6340 return ActOnStartOfFunctionDef(FnBodyScope, DP);
H A DSemaDecl.cpp9722 Decl *DP = HandleDeclarator(ParentScope, D, MultiTemplateParamsArg()); local
9723 return ActOnStartOfFunctionDef(FnBodyScope, DP);

Completed in 335 milliseconds