Home
last modified time | relevance | path

Searched refs:getStdAllocator (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/core/src/
Dumatrix.cpp88 MatAllocator* UMat::getStdAllocator() in getStdAllocator() function in cv::UMat
94 return Mat::getStdAllocator(); in getStdAllocator()
218 MatAllocator *a = allocator, *a0 = getStdAllocator(); in getUMat()
224 … UMat::getStdAllocator()->allocate(temp_u, accessFlags, usageFlags); // TODO result is not checked in getUMat()
262 MatAllocator *a = allocator, *a0 = getStdAllocator(); in create()
Docl.cpp4163 matStdAllocator = Mat::getStdAllocator(); in OpenCLAllocator()
4768 Mat::getStdAllocator()->download(u, dstptr, dims, sz, srcofs, srcstep, dststep); in download()
4887 Mat::getStdAllocator()->upload(u, srcptr, dims, sz, dstofs, dststep, srcstep); in upload()
Dmatrix.cpp225 MatAllocator* Mat::getStdAllocator() in getStdAllocator() function in cv::Mat
395 MatAllocator *a = allocator, *a0 = getStdAllocator(); in create()
433 (u->currAllocator ? u->currAllocator : allocator ? allocator : getStdAllocator())->unmap(u); in deallocate()
/external/opencv3/modules/core/include/opencv2/core/
Dmat.hpp1881 static MatAllocator* getStdAllocator();
2300 static MatAllocator* getStdAllocator();
/external/opencv3/modules/python/src2/
Dcv2.cpp141 NumpyAllocator() { stdAllocator = Mat::getStdAllocator(); } in NumpyAllocator()