/external/OpenCL-CTS/test_conformance/basic/ |
D | test_imagereadwrite3d.cpp | 40 … x, int y, int z, int w, int h, int d, int img_width, int img_height, int img_depth, MTdata mtData) in update_rgba8_image() argument 60 … x, int y, int z, int w, int h, int d, int img_width, int img_height, int img_depth, int elem_size) in update_image_from_image() argument 112 … x, int y, int z, int w, int h, int d, int img_width, int img_height, int img_depth, MTdata mtData) in update_rgba16_image() argument 162 … x, int y, int z, int w, int h, int d, int img_width, int img_height, int img_depth, MTdata mtData) in update_rgbafp_image() argument 209 int img_depth = 32; in test_imagereadwrite3d() local 218 rgba8_inptr = (unsigned char *)generate_rgba8_image(img_width, img_height, img_depth, mtData); in test_imagereadwrite3d() 219 … rgba16_inptr = (unsigned short *)generate_rgba16_image(img_width, img_height, img_depth, mtData); in test_imagereadwrite3d() 220 rgbafp_inptr = (float *)generate_rgbafp_image(img_width, img_height, img_depth, mtData); in test_imagereadwrite3d() 222 …a8_outptr = (unsigned char*)malloc(sizeof(unsigned char) * 4 * img_width * img_height * img_depth); in test_imagereadwrite3d() 223 …_outptr = (unsigned short*)malloc(sizeof(unsigned short) * 4 * img_width * img_height * img_depth); in test_imagereadwrite3d() [all …]
|
D | test_imagecopy3d.cpp | 118 int img_depth = 64; in test_imagecopy3d() local 121 unsigned num_elements = img_width * img_height * img_depth * 4; in test_imagecopy3d() 138 …image_3d(context, CL_MEM_READ_ONLY, &img_format, img_width, img_height, img_depth, 0, 0, NULL, &er… in test_imagecopy3d() 140 …image_3d(context, CL_MEM_READ_ONLY, &img_format, img_width, img_height, img_depth, 0, 0, NULL, &er… in test_imagecopy3d() 145 …image_3d(context, CL_MEM_READ_ONLY, &img_format, img_width, img_height, img_depth, 0, 0, NULL, &er… in test_imagecopy3d() 147 …image_3d(context, CL_MEM_READ_ONLY, &img_format, img_width, img_height, img_depth, 0, 0, NULL, &er… in test_imagecopy3d() 152 …image_3d(context, CL_MEM_READ_ONLY, &img_format, img_width, img_height, img_depth, 0, 0, NULL, &er… in test_imagecopy3d() 154 …image_3d(context, CL_MEM_READ_ONLY, &img_format, img_width, img_height, img_depth, 0, 0, NULL, &er… in test_imagecopy3d() 160 int x, y, z, delta_w = img_width/8, delta_h = img_height/16, delta_d = img_depth/4; in test_imagecopy3d() 178 size_t origin[3]={0,0,0}, region[3]={img_width, img_height, img_depth}; in test_imagecopy3d() [all …]
|
D | test_readimage3d.cpp | 144 int img_depth = 64; in test_readimage3d() local 147 size_t region[3] = {img_width, img_height, img_depth}; in test_readimage3d() 148 size_t length = img_width * img_height * img_depth * 4 * sizeof(float); in test_readimage3d() 158 input_ptr = generate_3d_image8(img_width, img_height, img_depth, d); in test_readimage3d() 159 ref_ptr = prepare_reference(input_ptr, img_width, img_height, img_depth); in test_readimage3d() 162 … CL_MEM_READ_ONLY, &formatsToTest[i].img_format, img_width, img_height, img_depth, 0, 0, NULL, &er… in test_readimage3d() 184 threads[2] = (unsigned int)img_depth; in test_readimage3d() 192 err = verify_3d_image8(ref_ptr, output_ptr, img_width, img_height, img_depth); in test_readimage3d()
|
D | test_readimage3d_fp32.cpp | 88 int img_depth = 64; in test_readimage3d_fp32() local 91 size_t region[3] = {img_width, img_height, img_depth}; in test_readimage3d_fp32() 92 size_t length = img_width * img_height * img_depth * 4 * sizeof(float); in test_readimage3d_fp32() 97 input_ptr = generate_float_image(img_width, img_height, img_depth, d); in test_readimage3d_fp32() 104 …image_3d(context, CL_MEM_READ_ONLY, &img_format, img_width, img_height, img_depth, 0, 0, NULL, &er… in test_readimage3d_fp32() 127 threads[2] = (unsigned int)img_depth; in test_readimage3d_fp32() 134 err = verify_float_image(input_ptr, output_ptr, img_width, img_height, img_depth); in test_readimage3d_fp32()
|
D | test_readimage3d_int16.cpp | 87 int img_depth = 64; in test_readimage3d_int16() local 90 size_t region[3] = {img_width, img_height, img_depth}; in test_readimage3d_int16() 91 size_t length = img_width * img_height * img_depth * 4 * sizeof(cl_ushort); in test_readimage3d_int16() 96 input_ptr = generate_16bit_image(img_width, img_height, img_depth, d); in test_readimage3d_int16() 103 …image_3d(context, CL_MEM_READ_ONLY, &img_format, img_width, img_height, img_depth, 0, 0, NULL, &er… in test_readimage3d_int16() 126 threads[2] = (unsigned int)img_depth; in test_readimage3d_int16() 133 err = verify_16bit_image(input_ptr, output_ptr, img_width, img_height, img_depth); in test_readimage3d_int16()
|
D | test_arrayimagecopy3d.cpp | 32 int img_depth = 32; in test_arrayimagecopy3d_single_format() local 42 …text, (cl_mem_flags)(CL_MEM_READ_WRITE), format, img_width, img_height, img_depth, 0, 0, NULL, &er… in test_arrayimagecopy3d_single_format() 48 buffer_size = sizeof(cl_uchar) * elem_size * img_width * img_height * img_depth; in test_arrayimagecopy3d_single_format() 60 size_t origin[3]={0,0,0}, region[3]={img_width,img_height,img_depth}; in test_arrayimagecopy3d_single_format()
|
D | test_imagearraycopy3d.cpp | 32 int img_depth = 32; in test_imagearraycopy3d_single_format() local 41 …text, (cl_mem_flags)(CL_MEM_READ_WRITE), format, img_width, img_height, img_depth, 0, 0, NULL, &er… in test_imagearraycopy3d_single_format() 47 buffer_size = sizeof(cl_uchar) * elem_size * img_width * img_height * img_depth; in test_imagearraycopy3d_single_format() 59 size_t origin[3]={0,0,0}, region[3]={img_width,img_height,img_depth}; in test_imagearraycopy3d_single_format()
|
/external/mesa3d/src/mapi/glapi/gen/ |
D | gl_API.dtd | 59 img_depth NMTOKEN #IMPLIED attribute 109 img_width / img_height / img_depth / img_extent - name of parameters
|