Home
last modified time | relevance | path

Searched refs:image_types (Results 1 – 7 of 7) sorted by relevance

/external/OpenCL-CTS/test_conformance/api/
Dtest_min_image_formats.cpp38 const cl_mem_object_type image_types[] = { in test_min_image_formats() local
74 for (size_t t = 0; t < ARRAY_SIZE(image_types); t++) in test_min_image_formats()
76 const cl_mem_object_type type = image_types[t]; in test_min_image_formats()
Dtest_api_consistency.cpp645 const cl_mem_object_type image_types[] = { in test_consistency_read_write_images() local
650 for (size_t i = 0; i < ARRAY_SIZE(image_types); i++) in test_consistency_read_write_images()
654 context, CL_MEM_KERNEL_READ_AND_WRITE, image_types[i], 0, NULL, in test_consistency_read_write_images()
/external/python/cpython3/Lib/test/test_tkinter/
Dtest_images.py13 image_types = self.root.image_types()
14 self.assertIsInstance(image_types, tuple)
15 self.assertIn('photo', image_types)
16 self.assertIn('bitmap', image_types)
26 self.assertRaises(RuntimeError, tkinter.image_types)
28 image_types = tkinter.image_types()
29 self.assertIsInstance(image_types, tuple)
30 self.assertIn('photo', image_types)
31 self.assertIn('bitmap', image_types)
34 self.assertRaises(RuntimeError, tkinter.image_types)
/external/OpenCL-CTS/test_conformance/computeinfo/
Dmain.cpp290 static const struct image_type_entry image_types[] = { variable
319 int ii, ni = sizeof(image_types) / sizeof(image_types[0]); in getImageInfo()
332 if (vercmp(version, image_types[ii].version) < 0) in getImageInfo()
337 log_info("\t%s supported formats:\n", image_types[ii].str); in getImageInfo()
346 image_types[ii].val, 5000, NULL, in getImageInfo()
370 image_types[ii].val, num_supported, in getImageInfo()
/external/mesa3d/src/gallium/drivers/zink/nir_to_spirv/
Dnir_to_spirv.c64 struct hash_table image_types; member
274 struct hash_entry *he = _mesa_hash_table_search(&ctx->image_types, var); in find_image_type()
1238 _mesa_hash_table_insert(&ctx->image_types, var, (void *)(intptr_t)image_type); in emit_image()
4424 …!_mesa_hash_table_init(&ctx.image_types, ctx.mem_ctx, _mesa_hash_pointer, _mesa_key_pointer_equal)) in nir_to_spirv()
/external/python/cpython3/Lib/tkinter/
D__init__.py2048 def image_types(self): member in Misc
4555 def image_types(): function
/external/python/cpython3/Misc/
DHISTORY29585 image_types() calls are now also widget methods.