Home
last modified time | relevance | path

Searched refs:PAGE_LOCKED (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/
Dcuda.hpp356 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/
Dcuda_host_mem.cpp149 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/
Dtest_stream.cpp67 src = cv::cuda::HostMem(cv::cuda::HostMem::PAGE_LOCKED); in SetUp()