/external/opencv3/modules/core/include/opencv2/core/ |
D | cuda.inl.hpp | 385 HostMem::HostMem(AllocType alloc_type_) in HostMem() function in cv::cuda::HostMem 391 HostMem::HostMem(const HostMem& m) in HostMem() function in cv::cuda::HostMem 399 HostMem::HostMem(int rows_, int cols_, int type_, AllocType alloc_type_) in HostMem() function in cv::cuda::HostMem 407 HostMem::HostMem(Size size_, int type_, AllocType alloc_type_) in HostMem() function in cv::cuda::HostMem 415 HostMem::HostMem(InputArray arr, AllocType alloc_type_) in HostMem() function in cv::cuda::HostMem 422 HostMem::~HostMem() in ~HostMem() 428 HostMem& HostMem::operator =(const HostMem& m) in operator =() 432 HostMem temp(m); in operator =() 440 void HostMem::swap(HostMem& b) in swap() 454 HostMem HostMem::clone() const in clone() [all …]
|
D | cuda.hpp | 353 class CV_EXPORTS HostMem class 360 explicit HostMem(AllocType alloc_type = PAGE_LOCKED); 362 HostMem(const HostMem& m); 364 HostMem(int rows, int cols, int type, AllocType alloc_type = PAGE_LOCKED); 365 HostMem(Size size, int type, AllocType alloc_type = PAGE_LOCKED); 368 explicit HostMem(InputArray arr, AllocType alloc_type = PAGE_LOCKED); 370 ~HostMem(); 372 HostMem& operator =(const HostMem& m); 375 void swap(HostMem& b); 378 HostMem clone() const; [all …]
|
D | mat.hpp | 185 _InputArray(const cuda::HostMem& cuda_mem); 286 _OutputArray(cuda::HostMem& cuda_mem); 302 _OutputArray(const cuda::HostMem& cuda_mem); 320 cuda::HostMem& getHostMemRef() const; 343 _InputOutputArray(cuda::HostMem& cuda_mem); 359 _InputOutputArray(const cuda::HostMem& cuda_mem);
|
D | base.hpp | 635 class CV_EXPORTS HostMem; variable
|
D | mat.inl.hpp | 116 inline _InputArray::_InputArray(const cuda::HostMem& cuda_mem) in _InputArray() 201 inline _OutputArray::_OutputArray(cuda::HostMem& cuda_mem) in _OutputArray() 222 inline _OutputArray::_OutputArray(const cuda::HostMem& cuda_mem) in _OutputArray() 291 inline _InputOutputArray::_InputOutputArray(cuda::HostMem& cuda_mem) in _InputOutputArray() 312 inline _InputOutputArray::_InputOutputArray(const cuda::HostMem& cuda_mem) in _InputOutputArray()
|
/external/opencv3/modules/cudaarithm/test/ |
D | test_stream.cpp | 56 cv::cuda::HostMem src; 59 cv::cuda::HostMem dst; 67 src = cv::cuda::HostMem(cv::cuda::HostMem::PAGE_LOCKED); in SetUp() 80 cv::cuda::HostMem src = test->src; in checkMemSet() 81 cv::cuda::HostMem dst = test->dst; in checkMemSet() 109 cv::cuda::HostMem src = test->src; in checkConvert() 110 cv::cuda::HostMem dst = test->dst; in checkConvert() 137 h_dst.allocator = cv::cuda::HostMem::getAllocator(); in CUDA_TEST_P()
|
D | test_buffer_pool.cpp | 57 void RunSimpleTest(Stream& stream, HostMem& dst_1, HostMem& dst_2) in RunSimpleTest() 85 void CheckSimpleTest(HostMem& dst_1, HostMem& dst_2) in CheckSimpleTest() 94 HostMem dst_1, dst_2; in CUDA_TEST_P() 103 HostMem dst1_1, dst1_2; in CUDA_TEST_P() 104 HostMem dst2_1, dst2_2; in CUDA_TEST_P()
|
D | test_reductions.cpp | 91 cv::cuda::HostMem dst; in CUDA_TEST_P() 156 cv::cuda::HostMem dst; in CUDA_TEST_P() 294 cv::cuda::HostMem dst; in CUDA_TEST_P() 321 cv::cuda::HostMem dst; in CUDA_TEST_P() 348 cv::cuda::HostMem dst; in CUDA_TEST_P() 424 cv::cuda::HostMem dst; in CUDA_TEST_P() 634 cv::cuda::HostMem minMaxVals, locVals; in CUDA_TEST_P() 799 cv::cuda::HostMem dst; in CUDA_TEST_P() 1027 cv::cuda::HostMem dst; in CUDA_TEST_P()
|
/external/opencv3/modules/core/src/ |
D | cuda_host_mem.cpp | 136 MatAllocator* cv::cuda::HostMem::getAllocator(AllocType alloc_type) in getAllocator() 179 void cv::cuda::HostMem::create(int rows_, int cols_, int type_) in create() 243 HostMem cv::cuda::HostMem::reshape(int new_cn, int new_rows) const in reshape() 245 HostMem hdr = *this; in reshape() 286 void cv::cuda::HostMem::release() in release() 301 GpuMat cv::cuda::HostMem::createGpuMatHeader() const in createGpuMatHeader()
|
D | matrix.cpp | 1219 const cuda::HostMem* cuda_mem = (const cuda::HostMem*)obj; in getMat_() 1420 const cuda::HostMem* cuda_mem = (const cuda::HostMem*)obj; in getGpuMat() 1558 const cuda::HostMem* cuda_mem = (const cuda::HostMem*)obj; in size() 1835 return ((const cuda::HostMem*)obj)->type(); in type() 1907 return ((const cuda::HostMem*)obj)->empty(); in empty() 2157 CV_Assert(!fixedSize() || ((cuda::HostMem*)obj)->size() == _sz); in create() 2158 CV_Assert(!fixedType() || ((cuda::HostMem*)obj)->type() == mtype); in create() 2159 ((cuda::HostMem*)obj)->create(_sz, mtype); in create() 2199 CV_Assert(!fixedSize() || ((cuda::HostMem*)obj)->size() == Size(_cols, _rows)); in create() 2200 CV_Assert(!fixedType() || ((cuda::HostMem*)obj)->type() == mtype); in create() [all …]
|
/external/opencv3/samples/gpu/ |
D | stereo_multi.cpp | 281 void compute(const HostMem& leftFrame, const HostMem& rightFrame, HostMem& disparity); 319 void StereoMultiGpuStream::compute(const HostMem& leftFrame, const HostMem& rightFrame, HostMem& di… in compute() 406 HostMem leftGrayFrame, rightGrayFrame; in main() 416 HostMem disparityMultiStream; in main()
|
/external/opencv3/modules/cudaarithm/src/cuda/ |
D | sum.cu | 141 HostMem dst; in sum() 186 HostMem dst; in absSum() 231 HostMem dst; in sqrSum()
|
D | minmaxloc.cu | 130 HostMem minMaxVals, locVals; in minMaxLoc()
|
D | minmax.cu | 122 HostMem dst; in minMax()
|
D | norm.cu | 120 HostMem dst; in norm()
|
/external/opencv3/modules/cudaarithm/src/ |
D | reductions.cpp | 121 HostMem dst; in norm() 171 HostMem dst; in meanStdDev()
|