/external/OpenCL-CTS/test_conformance/gles/ |
D | main.cpp | 196 error = clGetContextInfo( sCurrentContext, CL_CONTEXT_DEVICES, 0, NULL, &numDevices); in main() 211 …error = clGetContextInfo( sCurrentContext, CL_CONTEXT_DEVICES, sizeof( deviceIDs ), deviceIDs, NUL… in main() 302 error = clGetContextInfo( sCurrentContext, CL_CONTEXT_DEVICES, 0, NULL, &numDevices); in main() 316 …error = clGetContextInfo( sCurrentContext, CL_CONTEXT_DEVICES, sizeof( deviceIDs ), deviceIDs, NUL… in main()
|
/external/OpenCL-CTS/test_conformance/gl/ |
D | main.cpp | 261 error = clGetContextInfo( sCurrentContext, CL_CONTEXT_DEVICES, 0, NULL, &numDevices); in main() 272 error = clGetContextInfo( sCurrentContext, CL_CONTEXT_DEVICES, numDevices, deviceIDs, NULL); in main() 327 error = clGetContextInfo( sCurrentContext, CL_CONTEXT_DEVICES, 0, NULL, &numDevices); in main() 337 error = clGetContextInfo( sCurrentContext, CL_CONTEXT_DEVICES, numDevices, deviceIDs, NULL); in main()
|
D | test_images_write_common.cpp | 437 …error = clGetContextInfo(context, CL_CONTEXT_DEVICES, numDev * sizeof(cl_device_id), devices, NULL… in supportsHalf() 456 …error = clGetContextInfo(context, CL_CONTEXT_DEVICES, numDev * sizeof(cl_device_id), devices, NULL… in supportsMsaa() 475 …error = clGetContextInfo(context, CL_CONTEXT_DEVICES, numDev * sizeof(cl_device_id), devices, NULL… in supportsDepth()
|
D | test_fence_sync.cpp | 669 cl_int err = clGetContextInfo( context, CL_CONTEXT_DEVICES, 0, NULL, &device_cb); in test_fence_sync() 683 err = clGetContextInfo( context, CL_CONTEXT_DEVICES, device_cb, device_list, NULL); in test_fence_sync()
|
/external/OpenCL-CTS/test_common/harness/ |
D | typeWrappers.cpp | 50 error = clGetContextInfo(context, CL_CONTEXT_DEVICES, sizeof(devices), in Create() 147 error = clGetContextInfo(context, CL_CONTEXT_DEVICES, sizeof(devices), in Create() 248 error = clGetContextInfo(context, CL_CONTEXT_DEVICES, sizeof(devices), in Create() 356 error = clGetContextInfo(context, CL_CONTEXT_DEVICES, sizeof(devices), in Create()
|
D | kernelHelpers.cpp | 479 clGetContextInfo(context, CL_CONTEXT_DEVICES, in get_first_device_id() 995 error = clGetContextInfo(context, CL_CONTEXT_DEVICES, 0, NULL, &outSize); in get_max_allowed_work_group_size() 1001 clGetContextInfo(context, CL_CONTEXT_DEVICES, outSize, devices, NULL); in get_max_allowed_work_group_size() 1456 error = clGetContextInfo(context, CL_CONTEXT_DEVICES, 0, NULL, in get_min_alignment() 1467 error = clGetContextInfo(context, CL_CONTEXT_DEVICES, devices_size, in get_min_alignment() 1662 auto error = clGetContextInfo(context, CL_CONTEXT_DEVICES, 0, nullptr, in get_max_OpenCL_C_for_context() 1668 error = clGetContextInfo(context, CL_CONTEXT_DEVICES, devices_size_in_bytes, in get_max_OpenCL_C_for_context()
|
D | errorHelpers.cpp | 564 error = clGetContextInfo(context, CL_CONTEXT_DEVICES, 0, NULL, in OutputBuildLogs() 574 error = clGetContextInfo(context, CL_CONTEXT_DEVICES, size_ret, in OutputBuildLogs()
|
/external/OpenCL-CTS/test_common/gl/ |
D | setup_osx.cpp | 89 error = clGetContextInfo(context, CL_CONTEXT_DEVICES, sizeof(devices), devices, &size_out); in CreateCLContext()
|
/external/mesa3d/src/gallium/frontends/clover/api/ |
D | context.cpp | 128 case CL_CONTEXT_DEVICES: in clGetContextInfo()
|
/external/angle/src/libANGLE/renderer/cl/ |
D | CLContextCL.cpp | 48 errorCode = mNative->getDispatch().clGetContextInfo(mNative, CL_CONTEXT_DEVICES, 0u, nullptr, in getDevices() 53 errorCode = mNative->getDispatch().clGetContextInfo(mNative, CL_CONTEXT_DEVICES, valueSize, in getDevices()
|
/external/OpenCL-CTS/test_conformance/thread_dimensions/ |
D | test_thread_dimensions.cpp | 44 err = clGetContextInfo(context, CL_CONTEXT_DEVICES, 0, NULL, &num_devices_returned); in get_maximums() 51 err = clGetContextInfo(context, CL_CONTEXT_DEVICES, num_devices_returned, devices, NULL); in get_maximums()
|
/external/angle/src/common/ |
D | PackedCLEnums_autogen.cpp | 171 case CL_CONTEXT_DEVICES: in FromCLenum() 189 return CL_CONTEXT_DEVICES; in ToCLenum()
|
/external/mesa3d/include/CL/ |
D | cl2.hpp | 1232 F(cl_context_info, CL_CONTEXT_DEVICES, cl::vector<Device>) \ 1737 clGetContextInfo(context, CL_CONTEXT_DEVICES, 0, NULL, &size); in getContextPlatformVersion() 1741 clGetContextInfo(context, CL_CONTEXT_DEVICES, size, devices.data(), NULL); in getContextPlatformVersion() 3112 default_ = context.getInfo<CL_CONTEXT_DEVICES>()[0]; in makeDefault() 3654 for (const Device &d : context_.getInfo<CL_CONTEXT_DEVICES>()) { in max_size() 7063 Device device = context.getInfo<CL_CONTEXT_DEVICES>()[0]; 7129 Device device = context.getInfo<CL_CONTEXT_DEVICES>()[0]; 7185 error = context.getInfo(CL_CONTEXT_DEVICES, &devices); 7252 error = context.getInfo(CL_CONTEXT_DEVICES, &devices);
|
D | cl.hpp | 1389 F(cl_context_info, CL_CONTEXT_DEVICES, VECTOR_CLASS<Device>) \ 1813 clGetContextInfo(context, CL_CONTEXT_DEVICES, 0, NULL, &size); in getContextPlatformVersion() 1817 clGetContextInfo(context, CL_CONTEXT_DEVICES, size, devices, NULL); in getContextPlatformVersion() 2842 device = context.getInfo<CL_CONTEXT_DEVICES>()[0]; in getDefault() 5534 Device device = context.getInfo<CL_CONTEXT_DEVICES>()[0]; in CommandQueue() 5555 error = context.getInfo(CL_CONTEXT_DEVICES, &devices); in CommandQueue() 5659 Device device = context.getInfo<CL_CONTEXT_DEVICES>()[0]; in getDefault()
|
D | cl.h | 461 #define CL_CONTEXT_DEVICES 0x1081 macro
|
/external/OpenCL-CTS/test_conformance/spir/ |
D | run_services.cpp | 228 int error = clGetContextInfo(context, CL_CONTEXT_DEVICES, sizeof(device), device, NULL); in get_context_device()
|
/external/angle/include/CL/ |
D | cl.h | 463 #define CL_CONTEXT_DEVICES 0x1081 macro
|
/external/OpenCL-CTS/dependencies/ocl-headers/CL/ |
D | cl.h | 463 #define CL_CONTEXT_DEVICES 0x1081 macro
|