Searched refs:DP (Results 1 - 14 of 14) sorted by relevance

/external/opencv/cv/src/
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...]
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...]
/external/iproute2/tc/
H A Dq_gred.c39 fprintf(stderr, "Usage: ... gred DP drop-probability limit BYTES "
45 fprintf(stderr," gred setup DPs <num of DPs> default <default DP> "
75 fprintf(stderr, "\"default DP\" must be "
81 "\"default DP\" must be less than %d\n",
161 } else if (strcmp(*argv, "DP") == 0) {
163 opt.DP=strtol(*argv, (char **)NULL, 10);
164 DPRINTF ("\n ******* DP =%u\n",opt.DP);
165 if (opt.DP >MAX_DPs) { /* need a better error check */
166 fprintf(stderr, "DP
[all...]
/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/clang/lib/Parse/
H A DParser.cpp926 Decl *DP = Actions.HandleDeclarator(ParentScope, D, local
928 D.complete(DP);
931 if (DP) {
932 LateParsedTemplatedFunction *LPT = new LateParsedTemplatedFunction(DP);
935 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(DP))
938 FnD = cast<FunctionDecl>(DP);
948 return DP;
/external/iproute2/include/linux/
H A Dpkt_sched.h226 __u32 DP; /* upto 2^32 DPs */ member in struct:tc_gred_qopt
/external/kernel-headers/original/linux/
H A Dpkt_sched.h240 __u32 DP; /* upto 2^32 DPs */ member in struct:tc_gred_qopt
/external/llvm/lib/Target/XCore/
H A DXCoreRegisterInfo.cpp77 Reserved.set(XCore::DP);
/external/v8/benchmarks/
H A Dcrypto.js1578 function RSASetPrivateEx(N,E,D,P,Q,DP,DQ,C) {
1585 this.dmp1 = parseBigInt(DP,16);
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-crypto.js1570 function RSASetPrivateEx(N,E,D,P,Q,DP,DQ,C) {
1577 this.dmp1 = parseBigInt(DP,16);
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-crypto.js1570 function RSASetPrivateEx(N,E,D,P,Q,DP,DQ,C) {
1577 this.dmp1 = parseBigInt(DP,16);
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-crypto.js1570 function RSASetPrivateEx(N,E,D,P,Q,DP,DQ,C) {
1577 this.dmp1 = parseBigInt(DP,16);
/external/clang/lib/Sema/
H A DSemaTemplate.cpp5496 Decl *DP = HandleDeclarator(ParentScope, D, local
5499 = dyn_cast_or_null<FunctionTemplateDecl>(DP))
5502 if (FunctionDecl *Function = dyn_cast_or_null<FunctionDecl>(DP))
H A DSemaDecl.cpp7194 Decl *DP = HandleDeclarator(ParentScope, D, local
7196 return ActOnStartOfFunctionDef(FnBodyScope, DP);

Completed in 203 milliseconds