/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sparse_resources/ |
H A D | vktSparseResourcesShaderIntrinsicsSampled.cpp | 35 namespace sparse namespace 984 } // sparse
|
H A D | vktSparseResourcesMipmapSparseResidency.cpp | 53 namespace sparse namespace 103 // Check if device supports sparse operations for image type in checkSupport() 154 // Create logical device supporting both sparse and compute operations in iterate() 198 // Check if device supports sparse operations for image format in iterate() 200 TCU_THROW(NotSupportedError, "The image format does not support sparse operations"); in iterate() 212 TCU_THROW(NotSupportedError, "Image format does not support sparse operations"); in iterate() 218 // Create sparse image in iterate() 221 // Create sparse image memory bind semaphore in iterate() 227 // Get sparse image general memory requirements in iterate() 232 TCU_THROW(NotSupportedError, "Required memory size for sparse resourc in iterate() [all...] |
H A D | vktSparseResourcesTestsUtil.cpp | 37 namespace sparse namespace 1053 } // sparse
|
/kernel/linux/linux-5.10/arch/ia64/kernel/ |
H A D | setup.c | 452 io_space[0].sparse = 1; in io_port_init()
|
/kernel/linux/linux-6.6/arch/ia64/kernel/ |
H A D | setup.c | 474 io_space[0].sparse = 1; in io_port_init()
|
/kernel/linux/linux-5.10/drivers/platform/x86/ |
H A D | fujitsu-laptop.c | 48 #include <linux/input/sparse-keymap.h>
|
H A D | ideapad-laptop.c | 19 #include <linux/input/sparse-keymap.h>
|
H A D | hp-wmi.c | 22 #include <linux/input/sparse-keymap.h>
|
H A D | msi-laptop.c | 53 #include <linux/input/sparse-keymap.h>
|
H A D | eeepc-laptop.c | 25 #include <linux/input/sparse-keymap.h>
|
/kernel/linux/linux-6.6/drivers/platform/x86/ |
H A D | fujitsu-laptop.c | 48 #include <linux/input/sparse-keymap.h>
|
H A D | panasonic-laptop.c | 128 #include <linux/input/sparse-keymap.h>
|
H A D | eeepc-laptop.c | 25 #include <linux/input/sparse-keymap.h>
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sparse_resources/ |
H A D | vktSparseResourcesMipmapSparseResidency.cpp | 53 namespace sparse namespace 101 // Check if device supports sparse operations for image type in checkSupport() 152 // Create logical device supporting both sparse and compute operations in iterate() 196 // Check if device supports sparse operations for image format in iterate() 198 TCU_THROW(NotSupportedError, "The image format does not support sparse operations"); in iterate() 210 TCU_THROW(NotSupportedError, "Image format does not support sparse operations"); in iterate() 216 // Create sparse image in iterate() 219 // Create sparse image memory bind semaphore in iterate() 225 // Get sparse image general memory requirements in iterate() 230 TCU_THROW(NotSupportedError, "Required memory size for sparse resourc in iterate() [all...] |
H A D | vktSparseResourcesTestsUtil.cpp | 37 namespace sparse namespace 1056 } // sparse
|
/third_party/toybox/generated/ |
H A D | globals.h | 1542 long long *sparse; member
|
/kernel/linux/linux-6.6/fs/ntfs3/ |
H A D | super.c | 271 fsparam_flag_no("sparse", Opt_sparse), 362 opts->sparse = result.negated ? 0 : 1; in ntfs_fs_parse_param() 693 if (opts->sparse) in ntfs_show_options() 694 seq_puts(m, ",sparse"); in ntfs_show_options() 1099 /* Maximum size for sparse file. */ in ntfs_init_from_boot()
|
H A D | ntfs_fs.h | 103 unsigned sparse : 1; /* Create sparse files. */ member 229 u64 maxbytes_sparse; // Maximum size for sparse file.
|
/third_party/ffmpeg/libavcodec/ |
H A D | vorbisdec.c | 299 unsigned sparse = get_bits1(gb); in vorbis_parse_setup_hdr_codebooks() local 303 if (sparse) { in vorbis_parse_setup_hdr_codebooks() 304 ff_dlog(NULL, " sparse \n"); in vorbis_parse_setup_hdr_codebooks() 316 ff_dlog(NULL, " not sparse \n"); in vorbis_parse_setup_hdr_codebooks()
|
/third_party/mesa3d/src/gallium/winsys/amdgpu/drm/ |
H A D | amdgpu_cs.c | 641 list_for_each_entry(struct amdgpu_sparse_backing, backing, &bo->u.sparse.backing, list) { in amdgpu_lookup_or_add_sparse_buffer() 1374 /* Add backing of sparse buffers to the buffer list. 1387 list_for_each_entry(struct amdgpu_sparse_backing, backing, &bo->u.sparse.backing, list) { in amdgpu_add_sparse_backing_buffers()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineMultisampleTests.cpp | 3467 const bool sparse = m_backingMode == IMAGE_BACKING_MODE_SPARSE; 3469 const VkImageCreateFlags imageCreateFlags = sparse ? (VK_IMAGE_CREATE_SPARSE_BINDING_BIT | VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT) : 0u; 3470 const VkSharingMode sharingMode = (sparse && context.getUniversalQueueFamilyIndex() != context.getSparseQueueFamilyIndex()) ? VK_SHARING_MODE_CONCURRENT : VK_SHARING_MODE_EXCLUSIVE; 3474 if (sparse) 3499 throw tcu::NotSupportedError("Unsupported number of rasterization samples for sparse residency"); 3502 if (sparse && !context.getDeviceFeatures().sparseBinding) 3530 if (sparse && !checkSparseImageFormatSupport(context.getPhysicalDevice(), context.getInstanceInterface(), colorImageParams)) 3531 TCU_THROW(NotSupportedError, "The image format does not support sparse operations."); 3537 if (sparse)
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineMultisampleTests.cpp | 3374 const bool sparse = m_backingMode == IMAGE_BACKING_MODE_SPARSE; 3376 const VkImageCreateFlags imageCreateFlags = sparse ? (VK_IMAGE_CREATE_SPARSE_BINDING_BIT | VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT) : 0u; 3377 const VkSharingMode sharingMode = (sparse && context.getUniversalQueueFamilyIndex() != context.getSparseQueueFamilyIndex()) ? VK_SHARING_MODE_CONCURRENT : VK_SHARING_MODE_EXCLUSIVE; 3381 if (sparse) 3406 throw tcu::NotSupportedError("Unsupported number of rasterization samples for sparse residency"); 3409 if (sparse && !context.getDeviceFeatures().sparseBinding) 3437 if (sparse && !checkSparseImageFormatSupport(context.getPhysicalDevice(), context.getInstanceInterface(), colorImageParams)) 3438 TCU_THROW(NotSupportedError, "The image format does not support sparse operations."); 3444 if (sparse)
|
/third_party/skia/third_party/externals/spirv-cross/ |
H A D | spirv_glsl.cpp | 6540 SPIRV_CROSS_THROW("Invalid return type for sparse feedback."); 6554 void CompilerGLSL::emit_texture_op(const Instruction &i, bool sparse) 6567 if (sparse) 6571 string expr = to_texture_op(i, sparse, &forward, inherited_expressions); 6573 if (sparse) 6586 // Do not register sparse ops as control dependent as they are always lowered to a temporary. 6601 std::string CompilerGLSL::to_texture_op(const Instruction &i, bool sparse, bool *forward, 6783 name_args.is_sparse_feedback = sparse; 6790 if (sparse) 6840 if (!sparse [all...] |
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_resource.c | 1148 VKSCR(GetImageSparseMemoryRequirements)(screen->dev, res->obj->image, &count, &res->sparse); in resource_create() 1149 res->base.b.nr_sparse_levels = res->sparse.imageMipTailFirstLod; in resource_create() 1814 /* sparse/device-local will always need to wait since it has to copy */ in zink_buffer_map()
|
/kernel/linux/linux-5.10/drivers/input/misc/ |
H A D | wistron_btns.c | 12 #include <linux/input/sparse-keymap.h>
|