HomeSort by relevance Sort by last modified time
    Searched refs:DP (Results 1 - 25 of 216) sorted by null

1 2 3 4 5 6 7 8 9

  /external/opencv/cv/src/
cvcondens.cpp 49 // DP - dimension of the dynamical vector
57 CV_IMPL CvConDensation* cvCreateConDensation( int DP, int MP, int SamplesNum )
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...]
cvkalman.cpp 45 cvCreateKalman( int DP, int MP, int CP )
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, DP, CV_32FC1 ))
    [all...]
  /external/llvm/lib/IR/
DiagnosticInfo.cpp 109 void DiagnosticInfoInlineAsm::print(DiagnosticPrinter &DP) const {
110 DP << getMsgStr();
112 DP << " at line " << getLocCookie();
115 void DiagnosticInfoResourceLimit::print(DiagnosticPrinter &DP) const {
116 DP << getResourceName() << " limit";
119 DP << " of " << getResourceLimit();
121 DP << " exceeded (" << getResourceSize() << ") in " << getFunction();
124 void DiagnosticInfoDebugMetadataVersion::print(DiagnosticPrinter &DP) const {
125 DP << "ignoring debug info with an invalid version (" << getMetadataVersion()
130 DiagnosticPrinter &DP) const
    [all...]
  /external/llvm/lib/Linker/
LinkDiagnosticInfo.h 21 void print(DiagnosticPrinter &DP) const override;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
attr-pid-directive-1.d 9 Tag_ABI_PID: Data addressing position-independent, GOT near DP
attr-pid-directive-2.d 9 Tag_ABI_PID: Data addressing position-independent, GOT far from DP
attr-pid-opts-mpid-far.d 9 Tag_ABI_PID: Data addressing position-independent, GOT far from DP
attr-pid-opts-mpid-near.d 9 Tag_ABI_PID: Data addressing position-independent, GOT near DP
  /frameworks/support/annotations/src/android/support/annotation/
DimensionUnit.java 28 Dimension.DP,
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/metag/
metadsp21-invalid.s 5 DP MUL D0Re0, D0Ar6, D0Ar4
  /frameworks/base/core/java/android/annotation/
Dimension.java 43 int DP = 0;
47 @IntDef({PX, DP, SP})
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-tic6x/
attr-pid-11.d 11 Tag_ABI_PID: Data addressing position-independent, GOT near DP
attr-pid-12.d 11 Tag_ABI_PID: Data addressing position-independent, GOT near DP
attr-pid-21.d 11 Tag_ABI_PID: Data addressing position-independent, GOT near DP
attr-pid-22.d 11 Tag_ABI_PID: Data addressing position-independent, GOT far from DP
  /external/libcxx/test/std/experimental/memory/memory.resource.aliases/
header_unordered_map_synop.pass.cpp 46 using DP = std::equal_to<K>;
50 using StdMap = std::unordered_map<K, V, DH, DP, pmr::polymorphic_allocator<P>>;
55 using StdMap = std::unordered_map<K, V, MH, DP, pmr::polymorphic_allocator<P>>;
69 using StdMap = std::unordered_multimap<K, V, DH, DP, pmr::polymorphic_allocator<P>>;
74 using StdMap = std::unordered_multimap<K, V, MH, DP, pmr::polymorphic_allocator<P>>;
header_unordered_set_synop.pass.cpp 45 using DP = std::equal_to<V>;
48 using StdSet = std::unordered_set<V, DH, DP, pmr::polymorphic_allocator<V>>;
53 using StdSet = std::unordered_set<V, MH, DP, pmr::polymorphic_allocator<V>>;
67 using StdSet = std::unordered_multiset<V, DH, DP, pmr::polymorphic_allocator<V>>;
72 using StdSet = std::unordered_multiset<V, MH, DP, pmr::polymorphic_allocator<V>>;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.resource.aliases/
header_unordered_map_synop.pass.cpp 45 using DP = std::equal_to<K>;
49 using StdMap = std::unordered_map<K, V, DH, DP, pmr::polymorphic_allocator<P>>;
54 using StdMap = std::unordered_map<K, V, MH, DP, pmr::polymorphic_allocator<P>>;
68 using StdMap = std::unordered_multimap<K, V, DH, DP, pmr::polymorphic_allocator<P>>;
73 using StdMap = std::unordered_multimap<K, V, MH, DP, pmr::polymorphic_allocator<P>>;
header_unordered_set_synop.pass.cpp 44 using DP = std::equal_to<V>;
47 using StdSet = std::unordered_set<V, DH, DP, pmr::polymorphic_allocator<V>>;
52 using StdSet = std::unordered_set<V, MH, DP, pmr::polymorphic_allocator<V>>;
66 using StdSet = std::unordered_multiset<V, DH, DP, pmr::polymorphic_allocator<V>>;
71 using StdSet = std::unordered_multiset<V, MH, DP, pmr::polymorphic_allocator<V>>;
  /external/fec/
mmxbfly27.s 12 .set DP,128
35 movl DP(%edx),%edx # edx -> decisions
133 movl %edx,DP(%ebx) # stash incremented value of vp->dp
mmxbfly29.s 10 .set DP,512
37 movl DP(%edx),%edx # edx -> decisions
146 movl %edx,DP(%ebx) # stash incremented value of vp->dp
sse2bfly29.s 12 .set DP,512
36 movl DP(%edx),%edx # edx -> decisions
232 movl %edx,DP(%ebx) # stash incremented value of vp->dp
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
attr-merge-vfp-6.d 14 Tag_ABI_HardFP_use: SP and DP
attr-merge-vfp-6r.d 14 Tag_ABI_HardFP_use: SP and DP
attr-merge-vfp-7.d 14 Tag_ABI_HardFP_use: SP and DP

Completed in 675 milliseconds

1 2 3 4 5 6 7 8 9