Searched refs:PAGE_LOCKED (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/modules/core/include/opencv2/core/ |
D | cuda.hpp | 356 enum AllocType { PAGE_LOCKED = 1, SHARED = 2, WRITE_COMBINED = 4 }; enumerator 358 static MatAllocator* getAllocator(AllocType alloc_type = PAGE_LOCKED); 360 explicit HostMem(AllocType alloc_type = PAGE_LOCKED); 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);
|
/external/opencv3/modules/core/src/ |
D | cuda_host_mem.cpp | 149 case PAGE_LOCKED: flag = cudaHostAllocDefault; break; in getAllocator() 228 … case PAGE_LOCKED: cudaSafeCall( cudaHostAlloc(&ptr, datasize, cudaHostAllocDefault) ); break; in create()
|
/external/opencv3/modules/cudaarithm/test/ |
D | test_stream.cpp | 67 src = cv::cuda::HostMem(cv::cuda::HostMem::PAGE_LOCKED); in SetUp()
|