Home
last modified time | relevance | path

Searched refs:image_format_desc (Results 1 – 6 of 6) sorted by relevance

/external/OpenCL-CTS/test_conformance/api/
Dtest_api_min_max.cpp249 cl_image_format image_format_desc; in test_min_max_read_image_args() local
260 image_format_desc.image_channel_order = CL_RGBA; in test_min_max_read_image_args()
261 image_format_desc.image_channel_data_type = CL_FLOAT; in test_min_max_read_image_args()
333 …reate_image_2d( context, CL_MEM_READ_WRITE | CL_MEM_COPY_HOST_PTR, &image_format_desc, 4, 4, 0, im… in test_min_max_read_image_args()
384 cl_image_format image_format_desc; in test_min_max_write_image_args() local
392 image_format_desc.image_channel_order = CL_RGBA; in test_min_max_write_image_args()
393 image_format_desc.image_channel_data_type = CL_UNORM_INT8; in test_min_max_write_image_args()
449 …streams[i] = create_image_2d( context, CL_MEM_READ_WRITE, &image_format_desc, 16, 16, 0, NULL, &er… in test_min_max_write_image_args()
552 cl_image_format image_format_desc; in test_min_max_image_2d_width() local
572 …get_8_bit_image_format( context, CL_MEM_OBJECT_IMAGE2D, CL_MEM_READ_WRITE, 0, &image_format_desc ); in test_min_max_image_2d_width()
[all …]
/external/OpenCL-CTS/test_conformance/profiling/
DreadImage.cpp123 cl_image_format image_format_desc ) in read_image() argument
147 element_nbytes = channel_nbytes * get_format_channel_count( &image_format_desc ); in read_image()
164 if( image_format_desc.image_channel_data_type == CL_SIGNED_INT8 ) in read_image()
184 memobjs[0] = create_image_2d( context, flags, &image_format_desc, w, h, 0, NULL, &err ); in read_image()
359 cl_image_format image_format_desc = { CL_RGBA, CL_UNORM_INT8 }; in test_read_image_float() local
362 …ge( device, context, queue, numElements, readKernelCode[0], readKernelName[0], image_format_desc ); in test_read_image_float()
369 cl_image_format image_format_desc = { CL_RGBA, CL_SIGNED_INT8 }; in test_read_image_char() local
372 …ge( device, context, queue, numElements, readKernelCode[1], readKernelName[1], image_format_desc ); in test_read_image_char()
379 cl_image_format image_format_desc = { CL_RGBA, CL_UNSIGNED_INT8 }; in test_read_image_uchar() local
382 …ge( device, context, queue, numElements, readKernelCode[2], readKernelName[2], image_format_desc ); in test_read_image_uchar()
DwriteImage.cpp405 const char *name, cl_image_format image_format_desc, int readFloat ) in write_image() argument
433 element_nbytes = channel_nbytes * get_format_channel_count( &image_format_desc ); in write_image()
450 if( image_format_desc.image_channel_data_type == CL_SIGNED_INT8 ) in write_image()
469 memobjs[0] = create_image_2d( context, flags, &image_format_desc, w, h, 0, NULL, &err ); in write_image()
656 cl_image_format image_format_desc = { CL_RGBA, CL_UNORM_INT8 }; in test_write_image_float() local
659 … device, context, queue, numElements, readKernelCode[0], readKernelName[0], image_format_desc, 1 ); in test_write_image_float()
666 cl_image_format image_format_desc = { CL_RGBA, CL_SIGNED_INT8 }; in test_write_image_char() local
669 … device, context, queue, numElements, readKernelCode[1], readKernelName[1], image_format_desc, 0 ); in test_write_image_char()
676 cl_image_format image_format_desc = { CL_RGBA, CL_UNSIGNED_INT8 }; in test_write_image_uchar() local
679 … device, context, queue, numElements, readKernelCode[2], readKernelName[2], image_format_desc, 0 ); in test_write_image_uchar()
Dcopy.cpp432 cl_image_format image_format_desc = { CL_RGBA, CL_UNORM_INT8 }; in copy_image_size() local
484 memobjs[0] = create_image_2d(context, flags, &image_format_desc, w, h, 0, NULL, &err); in copy_image_size()
502 memobjs[2] = create_image_2d(context, flags, &image_format_desc, w, h, 0, NULL, &err); in copy_image_size()
771 cl_image_format image_format_desc = { CL_RGBA, CL_UNORM_INT8 }; in test_copy_array_to_image() local
776 unsigned int num_channels = (unsigned int)get_format_channel_count( &image_format_desc ); in test_copy_array_to_image()
804 memobjs[0] = create_image_2d( context, flags, &image_format_desc, w, h, 0, NULL, &err ); in test_copy_array_to_image()
Dexecute.cpp174 cl_image_format image_format_desc = { CL_RGBA, CL_UNORM_INT8 }; in kernelFilter() local
201 &image_format_desc, w, h, 0, inptr, &err ); in kernelFilter()
207 …memobjs[1] = create_image_2d( context, CL_MEM_WRITE_ONLY, &image_format_desc, w, h, 0, NULL, &err … in kernelFilter()
Dexecute_multipass.cpp95 cl_image_format image_format_desc = { CL_RGBA, CL_UNORM_INT8 }; in run_kernel() local
125 … context, (cl_mem_flags)(CL_MEM_READ_ONLY | CL_MEM_COPY_HOST_PTR), &image_format_desc, w, h, d, 0,… in run_kernel()