handle            155 3rdparty/libjpeg/jmemsys.h   handle_union handle;		/* reference to backing-store storage object */
handle            495 modules/core/include/opencv2/core/mat.hpp     void* handle;
handle           2278 modules/core/include/opencv2/core/mat.hpp     void* handle(int accessFlags) const;
handle            737 modules/core/src/directx.cpp     cl_mem clBuffer = (cl_mem)u.handle(ACCESS_READ);
handle            796 modules/core/src/directx.cpp     cl_mem clBuffer = (cl_mem)u.handle(ACCESS_READ);
handle            885 modules/core/src/directx.cpp     cl_mem clBuffer = (cl_mem)u.handle(ACCESS_READ);
handle            944 modules/core/src/directx.cpp     cl_mem clBuffer = (cl_mem)u.handle(ACCESS_READ);
handle           1039 modules/core/src/directx.cpp     cl_mem clBuffer = (cl_mem)u.handle(ACCESS_READ);
handle           1105 modules/core/src/directx.cpp     cl_mem clBuffer = (cl_mem)u.handle(ACCESS_WRITE);
handle           2408 modules/core/src/dxt.cpp     cl_mem srcarg = (cl_mem)src.handle(ACCESS_READ);
handle           2409 modules/core/src/dxt.cpp     cl_mem dstarg = (cl_mem)dst.handle(ACCESS_RW);
handle           2416 modules/core/src/dxt.cpp                                        &srcarg, &dstarg, (cl_mem)tmpBuffer.handle(ACCESS_RW)))
handle             54 modules/core/src/gl_core_3_1.cpp             static void * handle = NULL;
handle             55 modules/core/src/gl_core_3_1.cpp             if (!handle)
handle             62 modules/core/src/gl_core_3_1.cpp                     handle = dlopen(path, RTLD_LAZY | RTLD_GLOBAL);
handle             64 modules/core/src/gl_core_3_1.cpp                 if (!handle)
handle             67 modules/core/src/gl_core_3_1.cpp             return dlsym(handle, name);
handle             64 modules/core/src/glob.cpp         HANDLE handle;
handle             85 modules/core/src/glob.cpp         dir->handle = ::FindFirstFileExW(wfull_path, FindExInfoStandard,
handle             88 modules/core/src/glob.cpp         dir->handle = ::FindFirstFileExA((cv::String(path) + "\\*").c_str(),
handle             91 modules/core/src/glob.cpp         if(dir->handle == INVALID_HANDLE_VALUE)
handle            105 modules/core/src/glob.cpp             if (::FindNextFileW(dir->handle, &dir->data) != TRUE)
handle            117 modules/core/src/glob.cpp             if (::FindNextFileA(dir->handle, &dir->data) != TRUE)
handle            127 modules/core/src/glob.cpp         ::FindClose(dir->handle);
handle            751 modules/core/src/matmul.cpp                                   (cl_float)alpha, (const cl_mem)A.handle(ACCESS_READ), offa, lda,
handle            752 modules/core/src/matmul.cpp                                   (const cl_mem)B.handle(ACCESS_READ), offb, ldb,
handle            753 modules/core/src/matmul.cpp                                   (cl_float)beta, (cl_mem)D.handle(ACCESS_RW), offc, ldc,
handle            757 modules/core/src/matmul.cpp                                   alpha, (const cl_mem)A.handle(ACCESS_READ), offa, lda,
handle            758 modules/core/src/matmul.cpp                                   (const cl_mem)B.handle(ACCESS_READ), offb, ldb,
handle            759 modules/core/src/matmul.cpp                                   beta, (cl_mem)D.handle(ACCESS_RW), offc, ldc,
handle            766 modules/core/src/matmul.cpp                                    alpha_2, (const cl_mem)A.handle(ACCESS_READ), offa, lda,
handle            767 modules/core/src/matmul.cpp                                    (const cl_mem)B.handle(ACCESS_READ), offb, ldb,
handle            768 modules/core/src/matmul.cpp                                    beta_2, (cl_mem)D.handle(ACCESS_RW), offc, ldc,
handle            776 modules/core/src/matmul.cpp                                   alpha_2, (const cl_mem)A.handle(ACCESS_READ), offa, lda,
handle            777 modules/core/src/matmul.cpp                                   (const cl_mem)B.handle(ACCESS_READ), offb, ldb,
handle            778 modules/core/src/matmul.cpp                                   beta_2, (cl_mem)D.handle(ACCESS_RW), offc, ldc,
handle            696 modules/core/src/ocl.cpp     static void* handle = 0;
handle            697 modules/core/src/ocl.cpp     if (!handle)
handle            704 modules/core/src/ocl.cpp             handle = dlopen(oclpath, RTLD_LAZY);
handle            706 modules/core/src/ocl.cpp             g_haveOpenCL = handle != 0 && dlsym(handle, oclFuncToCheck) != 0;
handle            712 modules/core/src/ocl.cpp         if(!handle)
handle            716 modules/core/src/ocl.cpp     return funcname && handle ? dlsym(handle, funcname) : 0;
handle            736 modules/core/src/ocl.cpp     static HMODULE handle = 0;
handle            737 modules/core/src/ocl.cpp     if (!handle)
handle            742 modules/core/src/ocl.cpp             handle = LoadLibraryA("OpenCL.dll");
handle            744 modules/core/src/ocl.cpp             g_haveOpenCL = handle != 0 && GetProcAddress(handle, oclFuncToCheck) != 0;
handle            747 modules/core/src/ocl.cpp         if(!handle)
handle            751 modules/core/src/ocl.cpp     return funcname ? (void*)GetProcAddress(handle, funcname) : 0;
handle            762 modules/core/src/ocl.cpp     static void* handle = 0;
handle            763 modules/core/src/ocl.cpp     if (!handle)
handle            767 modules/core/src/ocl.cpp             handle = dlopen("libOpenCL.so", RTLD_LAZY);
handle            768 modules/core/src/ocl.cpp             if(!handle)
handle            769 modules/core/src/ocl.cpp                 handle = dlopen("libCL.so", RTLD_LAZY);
handle            771 modules/core/src/ocl.cpp             g_haveOpenCL = handle != 0 && dlsym(handle, oclFuncToCheck) != 0;
handle            773 modules/core/src/ocl.cpp         if(!handle)
handle            777 modules/core/src/ocl.cpp     return funcname ? (void*)dlsym(handle, funcname) : 0;
handle           1687 modules/core/src/ocl.cpp         handle = 0;
handle           1699 modules/core/src/ocl.cpp             if( clGetPlatformIDs(1, &handle, &n) != CL_SUCCESS || n == 0 )
handle           1700 modules/core/src/ocl.cpp                 handle = 0;
handle           1701 modules/core/src/ocl.cpp             if( handle != 0 )
handle           1705 modules/core/src/ocl.cpp                 CV_OclDbgAssert(clGetPlatformInfo(handle, CL_PLATFORM_VENDOR, sizeof(buf), buf, &len) == CL_SUCCESS);
handle           1716 modules/core/src/ocl.cpp     cl_platform_id handle;
handle           1752 modules/core/src/ocl.cpp     return p ? p->handle : 0;
handle           1794 modules/core/src/ocl.cpp         handle = (cl_device_id)d;
handle           1827 modules/core/src/ocl.cpp         return clGetDeviceInfo(handle, prop, sizeof(temp), &temp, &sz) == CL_SUCCESS &&
handle           1836 modules/core/src/ocl.cpp         return clGetDeviceInfo(handle, prop, sizeof(temp), &temp, &sz) == CL_SUCCESS &&
handle           1844 modules/core/src/ocl.cpp         return clGetDeviceInfo(handle, prop, sizeof(buf)-16, buf, &sz) == CL_SUCCESS &&
handle           1849 modules/core/src/ocl.cpp     cl_device_id handle;
handle           1910 modules/core/src/ocl.cpp     return p ? p->handle : 0;
handle           2108 modules/core/src/ocl.cpp         CV_OclDbgAssert(clGetDeviceInfo(p->handle, CL_DEVICE_MAX_WORK_ITEM_SIZES,
handle           2471 modules/core/src/ocl.cpp         handle = 0;
handle           2484 modules/core/src/ocl.cpp         CV_Assert(handle == NULL);
handle           2504 modules/core/src/ocl.cpp         handle = clCreateContext(prop, nd, &d, 0, 0, &status);
handle           2506 modules/core/src/ocl.cpp         bool ok = handle != 0 && status == CL_SUCCESS;
handle           2513 modules/core/src/ocl.cpp             handle = NULL;
handle           2560 modules/core/src/ocl.cpp         handle = clCreateContext(prop, nd, dlist_new, 0, 0, &retval);
handle           2561 modules/core/src/ocl.cpp         bool ok = handle != 0 && retval == CL_SUCCESS;
handle           2572 modules/core/src/ocl.cpp         if(handle)
handle           2574 modules/core/src/ocl.cpp             clReleaseContext(handle);
handle           2575 modules/core/src/ocl.cpp             handle = NULL;
handle           2597 modules/core/src/ocl.cpp     cl_context handle;
handle           2622 modules/core/src/ocl.cpp         CV_Assert(handle != NULL);
handle           2649 modules/core/src/ocl.cpp             void* ptr = clSVMAlloc(handle, CL_MEM_READ_WRITE, 100, 0);
handle           2688 modules/core/src/ocl.cpp                 clSVMFree(handle, ptr);
handle           2691 modules/core/src/ocl.cpp             clSVMFree(handle, ptr);
handle           2771 modules/core/src/ocl.cpp     if(!p->handle)
handle           2786 modules/core/src/ocl.cpp     if(!p->handle)
handle           2823 modules/core/src/ocl.cpp     return p == NULL ? NULL : p->handle;
handle           2850 modules/core/src/ocl.cpp             if (ctx->p->handle == NULL)
handle           2936 modules/core/src/ocl.cpp     if (impl->handle)
handle           2938 modules/core/src/ocl.cpp         CV_OclDbgAssert(clReleaseContext(impl->handle) == CL_SUCCESS);
handle           2942 modules/core/src/ocl.cpp     impl->handle = context;
handle           2948 modules/core/src/ocl.cpp     pImpl->handle = (cl_platform_id)platform;
handle           2969 modules/core/src/ocl.cpp         handle = clCreateCommandQueue(ch, dh, 0, &retval);
handle           2979 modules/core/src/ocl.cpp             if(handle)
handle           2981 modules/core/src/ocl.cpp                 clFinish(handle);
handle           2982 modules/core/src/ocl.cpp                 clReleaseCommandQueue(handle);
handle           2983 modules/core/src/ocl.cpp                 handle = NULL;
handle           2990 modules/core/src/ocl.cpp     cl_command_queue handle;
handle           3033 modules/core/src/ocl.cpp     return p->handle != 0;
handle           3038 modules/core/src/ocl.cpp     if(p && p->handle)
handle           3040 modules/core/src/ocl.cpp         CV_OclDbgAssert(clFinish(p->handle) == CL_SUCCESS);
handle           3046 modules/core/src/ocl.cpp     return p ? p->handle : 0;
handle           3092 modules/core/src/ocl.cpp         handle = ph != 0 ?
handle           3138 modules/core/src/ocl.cpp         if(handle)
handle           3139 modules/core/src/ocl.cpp             clReleaseKernel(handle);
handle           3144 modules/core/src/ocl.cpp     cl_kernel handle;
handle           3213 modules/core/src/ocl.cpp     if(p->handle == 0)
handle           3240 modules/core/src/ocl.cpp     return p ? p->handle : 0;
handle           3250 modules/core/src/ocl.cpp     if (!p || !p->handle)
handle           3257 modules/core/src/ocl.cpp     cl_int retval = clSetKernelArg(p->handle, (cl_uint)i, sz, value);
handle           3278 modules/core/src/ocl.cpp     if( !p || !p->handle )
handle           3289 modules/core/src/ocl.cpp         cl_mem h = (cl_mem)arg.m->handle(accessFlags);
handle           3303 modules/core/src/ocl.cpp             uchar*& svmDataPtr = (uchar*&)arg.m->u->handle;
handle           3306 modules/core/src/ocl.cpp             cl_int status = svmFns->fn_clSetKernelArgSVMPointer(p->handle, (cl_uint)i, svmDataPtr);
handle           3308 modules/core/src/ocl.cpp             cl_int status = svmFns->fn_clSetKernelArgSVMPointer(p->handle, (cl_uint)i, &svmDataPtr);
handle           3315 modules/core/src/ocl.cpp             CV_OclDbgAssert(clSetKernelArg(p->handle, (cl_uint)i, sizeof(h), &h) == CL_SUCCESS);
handle           3325 modules/core/src/ocl.cpp             CV_OclDbgAssert(clSetKernelArg(p->handle, (cl_uint)(i+1), sizeof(u2d.step), &u2d.step) == CL_SUCCESS);
handle           3326 modules/core/src/ocl.cpp             CV_OclDbgAssert(clSetKernelArg(p->handle, (cl_uint)(i+2), sizeof(u2d.offset), &u2d.offset) == CL_SUCCESS);
handle           3332 modules/core/src/ocl.cpp                 CV_OclDbgAssert(clSetKernelArg(p->handle, (cl_uint)i, sizeof(u2d.rows), &u2d.rows) == CL_SUCCESS);
handle           3333 modules/core/src/ocl.cpp                 CV_OclDbgAssert(clSetKernelArg(p->handle, (cl_uint)(i+1), sizeof(cols), &cols) == CL_SUCCESS);
handle           3340 modules/core/src/ocl.cpp             CV_OclDbgAssert(clSetKernelArg(p->handle, (cl_uint)(i+1), sizeof(u3d.slicestep), &u3d.slicestep) == CL_SUCCESS);
handle           3341 modules/core/src/ocl.cpp             CV_OclDbgAssert(clSetKernelArg(p->handle, (cl_uint)(i+2), sizeof(u3d.step), &u3d.step) == CL_SUCCESS);
handle           3342 modules/core/src/ocl.cpp             CV_OclDbgAssert(clSetKernelArg(p->handle, (cl_uint)(i+3), sizeof(u3d.offset), &u3d.offset) == CL_SUCCESS);
handle           3347 modules/core/src/ocl.cpp                 CV_OclDbgAssert(clSetKernelArg(p->handle, (cl_uint)i, sizeof(u3d.slices), &u3d.rows) == CL_SUCCESS);
handle           3348 modules/core/src/ocl.cpp                 CV_OclDbgAssert(clSetKernelArg(p->handle, (cl_uint)(i+1), sizeof(u3d.rows), &u3d.rows) == CL_SUCCESS);
handle           3349 modules/core/src/ocl.cpp                 CV_OclDbgAssert(clSetKernelArg(p->handle, (cl_uint)(i+2), sizeof(u3d.cols), &cols) == CL_SUCCESS);
handle           3356 modules/core/src/ocl.cpp     CV_OclDbgAssert(clSetKernelArg(p->handle, (cl_uint)i, arg.sz, arg.obj) == CL_SUCCESS);
handle           3364 modules/core/src/ocl.cpp     if(!p || !p->handle || p->e != 0)
handle           3383 modules/core/src/ocl.cpp     cl_int retval = clEnqueueNDRangeKernel(qq, p->handle, (cl_uint)dims,
handle           3408 modules/core/src/ocl.cpp     if(!p || !p->handle || p->e != 0)
handle           3412 modules/core/src/ocl.cpp     cl_int retval = clEnqueueTask(qq, p->handle, 0, 0, sync ? 0 : &p->e);
handle           3429 modules/core/src/ocl.cpp     if(!p || !p->handle)
handle           3433 modules/core/src/ocl.cpp     return clGetKernelWorkGroupInfo(p->handle, dev, CL_KERNEL_WORK_GROUP_SIZE,
handle           3439 modules/core/src/ocl.cpp     if(!p || !p->handle)
handle           3443 modules/core/src/ocl.cpp     return clGetKernelWorkGroupInfo(p->handle, dev, CL_KERNEL_PREFERRED_WORK_GROUP_SIZE_MULTIPLE,
handle           3449 modules/core/src/ocl.cpp     if(!p || !p->handle || !wsz)
handle           3453 modules/core/src/ocl.cpp     return clGetKernelWorkGroupInfo(p->handle, dev, CL_KERNEL_COMPILE_WORK_GROUP_SIZE,
handle           3459 modules/core/src/ocl.cpp     if(!p || !p->handle)
handle           3464 modules/core/src/ocl.cpp     return clGetKernelWorkGroupInfo(p->handle, dev, CL_KERNEL_LOCAL_MEM_SIZE,
handle           3484 modules/core/src/ocl.cpp         handle = clCreateProgramWithSource((cl_context)ctx.ptr(), 1, &srcptr, &srclen, &retval);
handle           3485 modules/core/src/ocl.cpp         if( handle && retval == CL_SUCCESS )
handle           3499 modules/core/src/ocl.cpp             retval = clBuildProgram(handle, n,
handle           3507 modules/core/src/ocl.cpp                 cl_int buildInfo_retval = clGetProgramBuildInfo(handle, (cl_device_id)deviceList[0],
handle           3513 modules/core/src/ocl.cpp                     buildInfo_retval = clGetProgramBuildInfo(handle, (cl_device_id)deviceList[0],
handle           3523 modules/core/src/ocl.cpp                 if (retval != CL_SUCCESS && handle)
handle           3525 modules/core/src/ocl.cpp                     clReleaseProgram(handle);
handle           3526 modules/core/src/ocl.cpp                     handle = NULL;
handle           3535 modules/core/src/ocl.cpp         handle = 0;
handle           3560 modules/core/src/ocl.cpp         handle = clCreateProgramWithBinary((cl_context)ctx.ptr(), 1, (cl_device_id*)&devid,
handle           3567 modules/core/src/ocl.cpp         if(!handle)
handle           3572 modules/core/src/ocl.cpp         if(clGetProgramInfo(handle, CL_PROGRAM_BINARY_SIZES, sizeof(progsz), &progsz, &retsz) != CL_SUCCESS)
handle           3578 modules/core/src/ocl.cpp         if(clGetProgramInfo(handle, CL_PROGRAM_BINARIES, sizeof(buf), &buf, &retsz) != CL_SUCCESS)
handle           3586 modules/core/src/ocl.cpp         if( handle )
handle           3592 modules/core/src/ocl.cpp                 clReleaseProgram(handle);
handle           3594 modules/core/src/ocl.cpp             handle = NULL;
handle           3602 modules/core/src/ocl.cpp     cl_program handle;
handle           3645 modules/core/src/ocl.cpp     if(!p->handle)
handle           3661 modules/core/src/ocl.cpp     return p ? p->handle : 0;
handle           3669 modules/core/src/ocl.cpp     return p->handle != 0;
handle           4205 modules/core/src/ocl.cpp         void* handle = NULL;
handle           4213 modules/core/src/ocl.cpp             handle = bufferPoolSVM.allocate(total);
handle           4224 modules/core/src/ocl.cpp             handle = bufferPool.allocate(total);
handle           4229 modules/core/src/ocl.cpp             handle = bufferPoolHostPtr.allocate(total);
handle           4233 modules/core/src/ocl.cpp             CV_Assert(handle != NULL); // Unsupported, throw
handle           4236 modules/core/src/ocl.cpp         if (!handle)
handle           4242 modules/core/src/ocl.cpp         u->handle = handle;
handle           4256 modules/core/src/ocl.cpp         if(u->handle == 0)
handle           4266 modules/core/src/ocl.cpp             void* handle = NULL;
handle           4276 modules/core/src/ocl.cpp                 handle = u->origdata;
handle           4277 modules/core/src/ocl.cpp                 CV_OPENCL_SVM_TRACE_P("Use fine grain system: %d (%p)\n", (int)u->size, handle);
handle           4292 modules/core/src/ocl.cpp                     handle = svmFns->fn_clSVMAlloc((cl_context)ctx.ptr(), memFlags, u->size, 0);
handle           4293 modules/core/src/ocl.cpp                     CV_Assert(handle);
handle           4299 modules/core/src/ocl.cpp                         CV_OPENCL_SVM_TRACE_P("clEnqueueSVMMap: %p (%d)\n", handle, (int)u->size);
handle           4301 modules/core/src/ocl.cpp                                 handle, u->size,
handle           4306 modules/core/src/ocl.cpp                     memcpy(handle, u->origdata, u->size);
handle           4309 modules/core/src/ocl.cpp                         CV_OPENCL_SVM_TRACE_P("clEnqueueSVMUnmap: %p\n", handle);
handle           4310 modules/core/src/ocl.cpp                         cl_int status = svmFns->fn_clEnqueueSVMUnmap(q, handle, 0, NULL, NULL);
handle           4323 modules/core/src/ocl.cpp                 handle = clCreateBuffer(ctx_handle, CL_MEM_USE_HOST_PTR|createFlags,
handle           4325 modules/core/src/ocl.cpp                 if((!handle || retval < 0) && !(accessFlags & ACCESS_FAST))
handle           4327 modules/core/src/ocl.cpp                     handle = clCreateBuffer(ctx_handle, CL_MEM_COPY_HOST_PTR|CL_MEM_READ_WRITE|createFlags,
handle           4332 modules/core/src/ocl.cpp             if(!handle || retval != CL_SUCCESS)
handle           4334 modules/core/src/ocl.cpp             u->handle = handle;
handle           4383 modules/core/src/ocl.cpp         CV_Assert(u->handle != 0 && u->urefcount == 0);
handle           4407 modules/core/src/ocl.cpp                             CV_OPENCL_SVM_TRACE_P("clEnqueueSVMMap: %p (%d)\n", u->handle, (int)u->size);
handle           4409 modules/core/src/ocl.cpp                                     u->handle, u->size,
handle           4414 modules/core/src/ocl.cpp                         memcpy(u->origdata, u->handle, u->size);
handle           4417 modules/core/src/ocl.cpp                             CV_OPENCL_SVM_TRACE_P("clEnqueueSVMUnmap: %p\n", u->handle);
handle           4418 modules/core/src/ocl.cpp                             cl_int status = svmFns->fn_clEnqueueSVMUnmap(q, u->handle, 0, NULL, NULL);
handle           4435 modules/core/src/ocl.cpp                         CV_OclDbgAssert(clEnqueueReadBuffer(q, (cl_mem)u->handle, CL_TRUE, 0,
handle           4442 modules/core/src/ocl.cpp                         void* data = clEnqueueMapBuffer(q, (cl_mem)u->handle, CL_TRUE,
handle           4446 modules/core/src/ocl.cpp                         CV_OclDbgAssert(clEnqueueUnmapMemObject(q, (cl_mem)u->handle, data, 0, 0, 0) == CL_SUCCESS);
handle           4461 modules/core/src/ocl.cpp                     CV_OPENCL_SVM_TRACE_P("clSVMFree: %p\n", u->handle);
handle           4462 modules/core/src/ocl.cpp                     svmFns->fn_clSVMFree((cl_context)ctx.ptr(), u->handle);
handle           4468 modules/core/src/ocl.cpp                 clReleaseMemObject((cl_mem)u->handle);
handle           4470 modules/core/src/ocl.cpp             u->handle = 0;
handle           4488 modules/core/src/ocl.cpp                 bufferPool.release((cl_mem)u->handle);
handle           4492 modules/core/src/ocl.cpp                 bufferPoolHostPtr.release((cl_mem)u->handle);
handle           4511 modules/core/src/ocl.cpp                         CV_OPENCL_SVM_TRACE_P("clEnqueueSVMUnmap: %p\n", u->handle);
handle           4512 modules/core/src/ocl.cpp                         cl_int status = svmFns->fn_clEnqueueSVMUnmap(q, u->handle, 0, NULL, NULL);
handle           4516 modules/core/src/ocl.cpp                 bufferPoolSVM.release((void*)u->handle);
handle           4521 modules/core/src/ocl.cpp                 clReleaseMemObject((cl_mem)u->handle);
handle           4523 modules/core/src/ocl.cpp             u->handle = 0;
handle           4533 modules/core/src/ocl.cpp         CV_Assert( u->handle != 0 );
handle           4561 modules/core/src/ocl.cpp                             CV_OPENCL_SVM_TRACE_P("clEnqueueSVMMap: %p (%d)\n", u->handle, (int)u->size);
handle           4563 modules/core/src/ocl.cpp                                     u->handle, u->size,
handle           4570 modules/core/src/ocl.cpp                     u->data = (uchar*)u->handle;
handle           4583 modules/core/src/ocl.cpp                 u->data = (uchar*)clEnqueueMapBuffer(q, (cl_mem)u->handle, CL_TRUE,
handle           4611 modules/core/src/ocl.cpp             CV_Assert( clEnqueueReadBuffer(q, (cl_mem)u->handle, CL_TRUE, 0,
handle           4623 modules/core/src/ocl.cpp         CV_Assert(u->handle != 0);
handle           4648 modules/core/src/ocl.cpp                         CV_OPENCL_SVM_TRACE_P("clEnqueueSVMUnmap: %p\n", u->handle);
handle           4649 modules/core/src/ocl.cpp                         cl_int status = svmFns->fn_clEnqueueSVMUnmap(q, u->handle,
handle           4663 modules/core/src/ocl.cpp                                 (cl_mem)u->handle, u->data, 0, 0, 0)) == CL_SUCCESS );
handle           4677 modules/core/src/ocl.cpp             CV_Assert( (retval = clEnqueueWriteBuffer(q, (cl_mem)u->handle, CL_TRUE, 0,
handle           4771 modules/core/src/ocl.cpp         CV_Assert( u->handle != 0 );
handle           4787 modules/core/src/ocl.cpp             CV_DbgAssert(u->data == NULL || u->data == u->handle);
handle           4795 modules/core/src/ocl.cpp                 CV_OPENCL_SVM_TRACE_P("clEnqueueSVMMap: %p (%d)\n", u->handle, (int)u->size);
handle           4797 modules/core/src/ocl.cpp                         u->handle, u->size,
handle           4804 modules/core/src/ocl.cpp                 memcpy(dstptr, (uchar*)u->handle + srcrawofs, total);
handle           4810 modules/core/src/ocl.cpp                 uchar* srcptr = (uchar*)u->handle;
handle           4834 modules/core/src/ocl.cpp                 CV_OPENCL_SVM_TRACE_P("clEnqueueSVMUnmap: %p\n", u->handle);
handle           4835 modules/core/src/ocl.cpp                 cl_int status = svmFns->fn_clEnqueueSVMUnmap(q, u->handle,
handle           4847 modules/core/src/ocl.cpp                 CV_Assert( clEnqueueReadBuffer(q, (cl_mem)u->handle, CL_TRUE,
handle           4852 modules/core/src/ocl.cpp                 CV_Assert( clEnqueueReadBufferRect(q, (cl_mem)u->handle, CL_TRUE,
handle           4893 modules/core/src/ocl.cpp         CV_Assert( u->handle != 0 );
handle           4899 modules/core/src/ocl.cpp             CV_DbgAssert(u->data == NULL || u->data == u->handle);
handle           4907 modules/core/src/ocl.cpp                 CV_OPENCL_SVM_TRACE_P("clEnqueueSVMMap: %p (%d)\n", u->handle, (int)u->size);
handle           4909 modules/core/src/ocl.cpp                         u->handle, u->size,
handle           4916 modules/core/src/ocl.cpp                 memcpy((uchar*)u->handle + dstrawofs, srcptr, total);
handle           4922 modules/core/src/ocl.cpp                 uchar* dstptr = (uchar*)u->handle;
handle           4946 modules/core/src/ocl.cpp                 CV_OPENCL_SVM_TRACE_P("clEnqueueSVMUnmap: %p\n", u->handle);
handle           4947 modules/core/src/ocl.cpp                 cl_int status = svmFns->fn_clEnqueueSVMUnmap(q, u->handle,
handle           4959 modules/core/src/ocl.cpp                 CV_Assert( clEnqueueWriteBuffer(q, (cl_mem)u->handle,
handle           4964 modules/core/src/ocl.cpp                 CV_Assert( clEnqueueWriteBufferRect(q, (cl_mem)u->handle, CL_TRUE,
handle           5003 modules/core/src/ocl.cpp         if( !src->handle || (src->data && src->hostCopyObsolete() < src->deviceCopyObsolete()) )
handle           5008 modules/core/src/ocl.cpp         if( !dst->handle || (dst->data && dst->hostCopyObsolete() < dst->deviceCopyObsolete()) )
handle           5045 modules/core/src/ocl.cpp                             (uchar*)dst->handle + dstrawofs, (uchar*)src->handle + srcrawofs, (int)total);
handle           5047 modules/core/src/ocl.cpp                             (uchar*)dst->handle + dstrawofs, (uchar*)src->handle + srcrawofs,
handle           5056 modules/core/src/ocl.cpp                     uchar* srcptr = (uchar*)src->handle;
handle           5068 modules/core/src/ocl.cpp                     uchar* dstptr = (uchar*)dst->handle;
handle           5106 modules/core/src/ocl.cpp                 CV_Assert( (retval = clEnqueueCopyBuffer(q, (cl_mem)src->handle, (cl_mem)dst->handle,
handle           5111 modules/core/src/ocl.cpp                 CV_Assert( (retval = clEnqueueCopyBufferRect(q, (cl_mem)src->handle, (cl_mem)dst->handle,
handle           5193 modules/core/src/ocl.cpp         handle = *(cl_platform_id*)id;
handle           5194 modules/core/src/ocl.cpp         getDevices(devices, handle);
handle           5201 modules/core/src/ocl.cpp         return clGetPlatformInfo(handle, prop, sizeof(buf)-16, buf, &sz) == CL_SUCCESS &&
handle           5207 modules/core/src/ocl.cpp     cl_platform_id handle;
handle           5532 modules/core/src/ocl.cpp         handle = 0;
handle           5539 modules/core/src/ocl.cpp         if (handle)
handle           5540 modules/core/src/ocl.cpp             clReleaseMemObject(handle);
handle           5600 modules/core/src/ocl.cpp         if (alias && !src.handle(ACCESS_RW))
handle           5622 modules/core/src/ocl.cpp             desc.buffer           = alias ? (cl_mem)src.handle(ACCESS_RW) : 0;
handle           5625 modules/core/src/ocl.cpp             handle = clCreateImage(context, CL_MEM_READ_WRITE, &format, &desc, NULL, &err);
handle           5632 modules/core/src/ocl.cpp             handle = clCreateImage2D(context, CL_MEM_READ_WRITE, &format, src.cols, src.rows, 0, NULL, &err);
handle           5647 modules/core/src/ocl.cpp             CV_Assert(clEnqueueCopyBufferRect(queue, (cl_mem)src.handle(ACCESS_READ), devData, origin, origin,
handle           5653 modules/core/src/ocl.cpp             devData = (cl_mem)src.handle(ACCESS_READ);
handle           5659 modules/core/src/ocl.cpp             CV_OclDbgAssert(clEnqueueCopyBufferToImage(queue, devData, handle, 0, origin, region, 0, NULL, 0) == CL_SUCCESS);
handle           5670 modules/core/src/ocl.cpp     cl_mem handle;
handle           5739 modules/core/src/ocl.cpp     return p ? p->handle : 0;
handle           5756 modules/core/src/ocl.cpp     void* h = u.handle(ACCESS_RW);
handle             60 modules/core/src/opencl/runtime/opencl_core.cpp     static void* handle = NULL;
handle             61 modules/core/src/opencl/runtime/opencl_core.cpp     if (!handle)
handle             70 modules/core/src/opencl/runtime/opencl_core.cpp             handle = dlopen(oclpath, RTLD_LAZY | RTLD_GLOBAL);
handle             71 modules/core/src/opencl/runtime/opencl_core.cpp             if (handle == NULL)
handle             76 modules/core/src/opencl/runtime/opencl_core.cpp             else if (dlsym(handle, OPENCL_FUNC_TO_CHECK_1_1) == NULL)
handle             79 modules/core/src/opencl/runtime/opencl_core.cpp                 handle = NULL;
handle             82 modules/core/src/opencl/runtime/opencl_core.cpp         if (!handle)
handle             85 modules/core/src/opencl/runtime/opencl_core.cpp     return dlsym(handle, name);
handle             96 modules/core/src/opencl/runtime/opencl_core.cpp     static HMODULE handle = NULL;
handle             97 modules/core/src/opencl/runtime/opencl_core.cpp     if (!handle)
handle            102 modules/core/src/opencl/runtime/opencl_core.cpp             handle = GetModuleHandleA("OpenCL.dll");
handle            103 modules/core/src/opencl/runtime/opencl_core.cpp             if (!handle)
handle            109 modules/core/src/opencl/runtime/opencl_core.cpp                 handle = LoadLibraryA(path);
handle            110 modules/core/src/opencl/runtime/opencl_core.cpp                 if (!handle)
handle            115 modules/core/src/opencl/runtime/opencl_core.cpp                 else if (GetProcAddress(handle, OPENCL_FUNC_TO_CHECK_1_1) == NULL)
handle            118 modules/core/src/opencl/runtime/opencl_core.cpp                     handle = NULL;
handle            122 modules/core/src/opencl/runtime/opencl_core.cpp         if (!handle)
handle            125 modules/core/src/opencl/runtime/opencl_core.cpp     return (void*)GetProcAddress(handle, name);
handle            137 modules/core/src/opencl/runtime/opencl_core.cpp     static void* handle = NULL;
handle            138 modules/core/src/opencl/runtime/opencl_core.cpp     if (!handle)
handle            147 modules/core/src/opencl/runtime/opencl_core.cpp             handle = dlopen(path, RTLD_LAZY | RTLD_GLOBAL);
handle            148 modules/core/src/opencl/runtime/opencl_core.cpp             if (handle == NULL)
handle            153 modules/core/src/opencl/runtime/opencl_core.cpp             else if (dlsym(handle, OPENCL_FUNC_TO_CHECK_1_1) == NULL)
handle            156 modules/core/src/opencl/runtime/opencl_core.cpp                 handle = NULL;
handle            159 modules/core/src/opencl/runtime/opencl_core.cpp         if (!handle)
handle            162 modules/core/src/opencl/runtime/opencl_core.cpp     return dlsym(handle, name);
handle             60 modules/core/src/umatrix.cpp     handle = 0;
handle             72 modules/core/src/umatrix.cpp     handle = 0;
handle            605 modules/core/src/umatrix.cpp     return u->handle;
handle            224 modules/cudaarithm/src/arithm.cpp     cublasHandle_t handle;
handle            225 modules/cudaarithm/src/arithm.cpp     cublasSafeCall( cublasCreate_v2(&handle) );
handle            227 modules/cudaarithm/src/arithm.cpp     cublasSafeCall( cublasSetStream_v2(handle, StreamAccessor::getStream(stream)) );
handle            229 modules/cudaarithm/src/arithm.cpp     cublasSafeCall( cublasSetPointerMode_v2(handle, CUBLAS_POINTER_MODE_HOST) );
handle            246 modules/cudaarithm/src/arithm.cpp         cublasSafeCall( cublasSgemm_v2(handle, transa, transb, tr2 ? src2.rows : src2.cols, tr1 ? src1.cols : src1.rows, tr2 ? src2.cols : src2.rows,
handle            255 modules/cudaarithm/src/arithm.cpp         cublasSafeCall( cublasDgemm_v2(handle, transa, transb, tr2 ? src2.rows : src2.cols, tr1 ? src1.cols : src1.rows, tr2 ? src2.cols : src2.rows,
handle            264 modules/cudaarithm/src/arithm.cpp         cublasSafeCall( cublasCgemm_v2(handle, transa, transb, tr2 ? src2.rows : src2.cols, tr1 ? src1.cols : src1.rows, tr2 ? src2.cols : src2.rows,
handle            273 modules/cudaarithm/src/arithm.cpp         cublasSafeCall( cublasZgemm_v2(handle, transa, transb, tr2 ? src2.rows : src2.cols, tr1 ? src1.cols : src1.rows, tr2 ? src2.cols : src2.rows,
handle            282 modules/cudaarithm/src/arithm.cpp     cublasSafeCall( cublasDestroy_v2(handle) );
handle            171 modules/highgui/src/window_carbon.cpp static CvTrackbar* icvTrackbarByHandle( void * handle )
handle            175 modules/highgui/src/window_carbon.cpp     while( window != 0 && window->window != handle) {
handle            177 modules/highgui/src/window_carbon.cpp         while (trackbar != 0 && trackbar->trackbar != handle)
handle            179 modules/highgui/src/window_carbon.cpp         if (trackbar != 0 && trackbar->trackbar == handle)
handle            186 modules/highgui/src/window_carbon.cpp static CvWindow* icvWindowByHandle( void * handle )
handle            190 modules/highgui/src/window_carbon.cpp     while( window != 0 && window->window != handle)
handle           1387 modules/ts/src/ts_gtest.cpp   explicit AutoHandle(HANDLE handle) : handle_(handle) {}
handle           1393 modules/ts/src/ts_gtest.cpp   void Reset(HANDLE handle) {
handle           1394 modules/ts/src/ts_gtest.cpp     if (handle != handle_) {
handle           1397 modules/ts/src/ts_gtest.cpp       handle_ = handle;
handle            140 modules/videoio/src/cap_dc1394.cpp     raw1394handle_t handle;
handle            244 modules/videoio/src/cap_dc1394.cpp     pcap->handle = handles[cameras[index].portnum];
handle            248 modules/videoio/src/cap_dc1394.cpp     if (dc1394_query_supported_formats(pcap->handle, pcap->camera->node, &formats)<0) {
handle            255 modules/videoio/src/cap_dc1394.cpp             if (dc1394_query_supported_modes(pcap->handle, pcap->camera->node, i+FORMAT_MIN, &modes[i])<0) {
handle            297 modules/videoio/src/cap_dc1394.cpp         if (dc1394_dma_setup_capture(pcap->handle, pcap->camera->node, index+1 /*channel*/,
handle            306 modules/videoio/src/cap_dc1394.cpp         if(dc1394_dma_setup_format7_capture(pcap->handle,pcap->camera->node,index+1 /*channel*/,
handle            317 modules/videoio/src/cap_dc1394.cpp     if (dc1394_start_iso_transmission(pcap->handle, pcap->camera->node)!=DC1394_SUCCESS) {
handle            325 modules/videoio/src/cap_dc1394.cpp     if (dc1394_get_iso_status(pcap->handle, pcap->camera->node, &status)!=DC1394_SUCCESS) {
handle            349 modules/videoio/src/cap_dc1394.cpp     dc1394_stop_iso_transmission(capture->handle, capture->camera->node);
handle            350 modules/videoio/src/cap_dc1394.cpp     dc1394_dma_unlisten (capture->handle, capture->camera);
handle            465 modules/videoio/src/cap_dc1394.cpp             CV_DC1394_CALL(dc1394_get_video_framerate(capture->handle, capture->camera->node,
handle            495 modules/videoio/src/cap_dc1394.cpp         CV_DC1394_CALL( dc1394_is_feature_present(capture->handle, capture->camera->node,
handle            502 modules/videoio/src/cap_dc1394.cpp             dc1394_get_feature_value(capture->handle, capture->camera->node, index, &value);
handle            624 modules/videoio/src/cap_dc1394.cpp     if (dc1394_query_supported_formats(capture->handle, capture->camera->node, &formats)<0) {
handle            635 modules/videoio/src/cap_dc1394.cpp     if (dc1394_query_supported_modes(capture->handle, capture->camera->node, format, &modes)<0){
handle            653 modules/videoio/src/cap_dc1394.cpp     dc1394_dma_unlisten(capture->handle, capture->camera);
handle            654 modules/videoio/src/cap_dc1394.cpp     if (dc1394_dma_setup_capture(capture->handle, capture->camera->node, capture->camera->channel /*channel*/,
handle            661 modules/videoio/src/cap_dc1394.cpp     dc1394_start_iso_transmission(capture->handle, capture->camera->node);
handle            676 modules/videoio/src/cap_dc1394.cpp     if (dc1394_query_supported_framerates(capture->handle, capture->camera->node,
handle            719 modules/videoio/src/cap_dc1394.cpp     dc1394_set_video_framerate(capture->handle, capture->camera->node,fps);
handle            720 modules/videoio/src/cap_dc1394.cpp     dc1394_get_video_framerate(capture->handle, capture->camera->node,
handle            785 modules/videoio/src/cap_dc1394.cpp         if( dc1394_is_feature_on(capture->handle, capture->camera->node, feature_id, &isOn)
handle            791 modules/videoio/src/cap_dc1394.cpp                 if( dc1394_feature_on_off(capture->handle, capture->camera->node, feature_id, 1) == DC1394_FAILURE ) {
handle            798 modules/videoio/src/cap_dc1394.cpp         dc1394_has_auto_mode(capture->handle, capture->camera->node, feature_id, &hasAutoCapability);
handle            802 modules/videoio/src/cap_dc1394.cpp             if( dc1394_is_feature_auto(capture->handle, capture->camera->node, feature_id, &isAutoOn ) == DC1394_FAILURE ) {
handle            816 modules/videoio/src/cap_dc1394.cpp                 if(dc1394_auto_on_off(capture->handle, capture->camera->node, feature_id, 1) == DC1394_FAILURE ) {
handle            826 modules/videoio/src/cap_dc1394.cpp             if(dc1394_auto_on_off(capture->handle, capture->camera->node, feature_id, 0) == DC1394_FAILURE ) {
handle            833 modules/videoio/src/cap_dc1394.cpp         CV_DC1394_CALL(	dc1394_get_min_value(capture->handle, capture->camera->node, feature_id, &minval));
handle            834 modules/videoio/src/cap_dc1394.cpp         CV_DC1394_CALL(	dc1394_get_max_value(capture->handle, capture->camera->node, feature_id, &maxval));
handle            838 modules/videoio/src/cap_dc1394.cpp         if (dc1394_set_feature_value(capture->handle, capture->camera->node, feature_id, val) ==
handle            843 modules/videoio/src/cap_dc1394.cpp         if (dc1394_get_feature_value(capture->handle, capture->camera->node, feature_id, &nval) ==
handle             81 modules/videoio/src/cap_unicap.cpp     handle = 0;
handle             98 modules/videoio/src/cap_unicap.cpp   unicap_handle_t handle;
handle            114 modules/videoio/src/cap_unicap.cpp   if (!SUCCESS(unicap_stop_capture(handle)))
handle            117 modules/videoio/src/cap_unicap.cpp   if (!SUCCESS(unicap_close(handle)))
handle            141 modules/videoio/src/cap_unicap.cpp   if(!SUCCESS(unicap_open( &handle, &device)))
handle            146 modules/videoio/src/cap_unicap.cpp   if (!SUCCESS(unicap_enumerate_formats(handle, &format_spec, &format, desired_format))) {
handle            162 modules/videoio/src/cap_unicap.cpp   if (!SUCCESS(unicap_set_format(handle, &format))) {
handle            192 modules/videoio/src/cap_unicap.cpp   if(!SUCCESS(unicap_start_capture(handle))) {
handle            219 modules/videoio/src/cap_unicap.cpp     if(!SUCCESS(unicap_queue_buffer(handle, &raw_buffer)))
handle            222 modules/videoio/src/cap_unicap.cpp     if(SUCCESS(unicap_wait_buffer(handle, &returned_buffer)))