Home
last modified time | relevance | path

Searched refs:device (Results 101 - 125 of 3325) sorted by relevance

12345678910>>...133

/third_party/mesa3d/src/amd/vulkan/
H A Dradv_meta.h67 VkResult radv_device_init_meta_clear_state(struct radv_device *device, bool on_demand);
68 void radv_device_finish_meta_clear_state(struct radv_device *device);
70 VkResult radv_device_init_meta_resolve_state(struct radv_device *device, bool on_demand);
71 void radv_device_finish_meta_resolve_state(struct radv_device *device);
73 VkResult radv_device_init_meta_depth_decomp_state(struct radv_device *device, bool on_demand);
74 void radv_device_finish_meta_depth_decomp_state(struct radv_device *device);
76 VkResult radv_device_init_meta_fast_clear_flush_state(struct radv_device *device, bool on_demand);
77 void radv_device_finish_meta_fast_clear_flush_state(struct radv_device *device);
79 VkResult radv_device_init_meta_blit_state(struct radv_device *device, bool on_demand);
80 void radv_device_finish_meta_blit_state(struct radv_device *device);
[all...]
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkRefUtil.cpp32 VkDevice device, in createGraphicsPipeline()
38 VK_CHECK(vk.createGraphicsPipelines(device, pipelineCache, 1u, pCreateInfo, pAllocator, &object)); in createGraphicsPipeline()
39 return Move<VkPipeline>(check<VkPipeline>(object), Deleter<VkPipeline>(vk, device, pAllocator)); in createGraphicsPipeline()
43 VkDevice device, in createComputePipeline()
49 VK_CHECK(vk.createComputePipelines(device, pipelineCache, 1u, pCreateInfo, pAllocator, &object)); in createComputePipeline()
50 return Move<VkPipeline>(check<VkPipeline>(object), Deleter<VkPipeline>(vk, device, pAllocator)); in createComputePipeline()
56 VkDevice device, in createRayTracingPipelineNV()
62 VK_CHECK(vk.createRayTracingPipelinesNV(device, pipelineCache, 1u, pCreateInfo, pAllocator, &object)); in createRayTracingPipelineNV()
63 return Move<VkPipeline>(check<VkPipeline>(object), Deleter<VkPipeline>(vk, device, pAllocator)); in createRayTracingPipelineNV()
67 VkDevice device, in createRayTracingPipelineKHR()
31 createGraphicsPipeline(const DeviceInterface& vk, VkDevice device, VkPipelineCache pipelineCache, const VkGraphicsPipelineCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator) createGraphicsPipeline() argument
42 createComputePipeline(const DeviceInterface& vk, VkDevice device, VkPipelineCache pipelineCache, const VkComputePipelineCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator) createComputePipeline() argument
55 createRayTracingPipelineNV(const DeviceInterface& vk, VkDevice device, VkPipelineCache pipelineCache, const VkRayTracingPipelineCreateInfoNV* pCreateInfo, const VkAllocationCallbacks* pAllocator) createRayTracingPipelineNV() argument
66 createRayTracingPipelineKHR(const DeviceInterface& vk, VkDevice device, VkDeferredOperationKHR deferredOperation, VkPipelineCache pipelineCache, const VkRayTracingPipelineCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator) createRayTracingPipelineKHR() argument
80 allocateCommandBuffer(const DeviceInterface& vk, VkDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo) allocateCommandBuffer() argument
88 allocateCommandBuffers(const DeviceInterface& vk, VkDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo, Move<VkCommandBuffer> *pCommandBuffers) allocateCommandBuffers() argument
99 allocateDescriptorSet(const DeviceInterface& vk, VkDevice device, const VkDescriptorSetAllocateInfo* pAllocateInfo) allocateDescriptorSet() argument
107 createSemaphore(const DeviceInterface& vk, VkDevice device, VkSemaphoreCreateFlags flags, const VkAllocationCallbacks* pAllocator) createSemaphore() argument
123 createSemaphoreType(const DeviceInterface& vk, VkDevice device, VkSemaphoreType type, VkSemaphoreCreateFlags flags, const deUint64 initialValue, const VkAllocationCallbacks* pAllocator) createSemaphoreType() argument
149 createFence(const DeviceInterface& vk, VkDevice device, VkFenceCreateFlags flags, const VkAllocationCallbacks* pAllocator) createFence() argument
165 createCommandPool(const DeviceInterface& vk, VkDevice device, VkCommandPoolCreateFlags flags, deUint32 queueFamilyIndex, const VkAllocationCallbacks* pAllocator) createCommandPool() argument
183 allocateCommandBuffer(const DeviceInterface& vk, VkDevice device, VkCommandPool commandPool, VkCommandBufferLevel level) allocateCommandBuffer() argument
201 createEvent(const DeviceInterface& vk, VkDevice device, VkEventCreateFlags flags, const VkAllocationCallbacks* pAllocateInfo) createEvent() argument
221 createShaderModule(const DeviceInterface& vk, VkDevice device, const VkShaderModuleCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator) createShaderModule() argument
[all...]
H A DvkResourceInterface.hpp50 VkDevice device) = 0;
52 virtual void deinitDevice (VkDevice device) = 0;
76 virtual void registerDeviceFeatures (VkDevice device,
78 virtual void unregisterDeviceFeatures (VkDevice device) const = 0;
79 virtual VkResult createShaderModule (VkDevice device,
84 virtual VkResult createGraphicsPipelines (VkDevice device,
91 virtual VkResult createComputePipelines (VkDevice device,
98 virtual void destroyPipeline (VkDevice device,
101 virtual void createRenderPass (VkDevice device,
105 virtual void createRenderPass2 (VkDevice device,
[all...]
/third_party/mesa3d/src/imagination/vulkan/
H A Dpvr_pipeline.c61 struct pvr_device *device, in pvr_pds_coeff_program_create_and_upload()
83 staging_buffer = vk_alloc2(&device->vk.alloc, in pvr_pds_coeff_program_create_and_upload()
89 return vk_error(device, VK_ERROR_OUT_OF_HOST_MEMORY); in pvr_pds_coeff_program_create_and_upload()
104 result = pvr_gpu_upload_pds(device, in pvr_pds_coeff_program_create_and_upload()
114 vk_free2(&device->vk.alloc, allocator, staging_buffer); in pvr_pds_coeff_program_create_and_upload()
118 vk_free2(&device->vk.alloc, allocator, staging_buffer); in pvr_pds_coeff_program_create_and_upload()
126 struct pvr_device *device, in pvr_pds_fragment_program_create_and_upload()
158 staging_buffer = vk_alloc2(&device->vk.alloc, in pvr_pds_fragment_program_create_and_upload()
164 return vk_error(device, VK_ERROR_OUT_OF_HOST_MEMORY); in pvr_pds_fragment_program_create_and_upload()
173 result = pvr_gpu_upload_pds(device, in pvr_pds_fragment_program_create_and_upload()
60 pvr_pds_coeff_program_create_and_upload( struct pvr_device *device, const VkAllocationCallbacks *allocator, const uint32_t *fpu_iterators, uint32_t fpu_iterators_count, const uint32_t *destinations, struct pvr_pds_upload *const pds_upload_out) pvr_pds_coeff_program_create_and_upload() argument
125 pvr_pds_fragment_program_create_and_upload( struct pvr_device *device, const VkAllocationCallbacks *allocator, const struct pvr_bo *fragment_shader_bo, uint32_t fragment_temp_count, enum rogue_msaa_mode msaa_mode, bool has_phase_rate_change, struct pvr_pds_upload *const pds_upload_out) pvr_pds_fragment_program_create_and_upload() argument
338 pvr_pds_vertex_attrib_program_create_and_upload( struct pvr_device *const device, const VkAllocationCallbacks *const allocator, struct pvr_pds_vertex_primary_program_input *const input, struct pvr_pds_attrib_program *const program_out) pvr_pds_vertex_attrib_program_create_and_upload() argument
433 pvr_pds_vertex_attrib_program_destroy( struct pvr_device *const device, const struct VkAllocationCallbacks *const allocator, struct pvr_pds_attrib_program *const program) pvr_pds_vertex_attrib_program_destroy() argument
456 pvr_pds_vertex_attrib_programs_create_and_upload( struct pvr_device *device, const VkAllocationCallbacks *const allocator, const VkPipelineVertexInputStateCreateInfo *const vertex_input_state, uint32_t usc_temp_count, const struct rogue_vs_build_data *vs_data, pvr_pds_attrib_programs_array_ptr programs_out_ptr) pvr_pds_vertex_attrib_programs_create_and_upload() argument
572 pvr_pds_descriptor_program_setup_buffers( struct pvr_device *device, bool robust_buffer_access, const struct rogue_compile_time_consts_data *compile_time_consts_data, const struct rogue_ubo_data *ubo_data, pvr_pds_descriptor_program_buffer_array_ptr buffers_out_ptr, uint32_t *const buffer_count_out, struct pvr_bo **const static_consts_pvr_bo_out) pvr_pds_descriptor_program_setup_buffers() argument
642 pvr_pds_descriptor_program_create_and_upload( struct pvr_device *const device, const VkAllocationCallbacks *const allocator, const struct rogue_compile_time_consts_data *const compile_time_consts_data, const struct rogue_ubo_data *const ubo_data, const struct pvr_explicit_constant_usage *const explicit_const_usage, const struct pvr_pipeline_layout *const layout, enum pvr_stage_allocation stage, struct pvr_stage_allocation_descriptor_state *const descriptor_state) pvr_pds_descriptor_program_create_and_upload() argument
795 pvr_pds_descriptor_program_destroy( struct pvr_device *const device, const struct VkAllocationCallbacks *const allocator, struct pvr_stage_allocation_descriptor_state *const descriptor_state) pvr_pds_descriptor_program_destroy() argument
857 pvr_pds_compute_program_create_and_upload( struct pvr_device *const device, const VkAllocationCallbacks *const allocator, const uint32_t local_input_regs[static const PVR_WORKGROUP_DIMENSIONS], const uint32_t work_group_input_regs[static const PVR_WORKGROUP_DIMENSIONS], uint32_t barrier_coefficient, uint32_t usc_temps, pvr_dev_addr_t usc_shader_dev_addr, struct pvr_pds_upload *const pds_upload_out, struct pvr_pds_info *const pds_info_out) pvr_pds_compute_program_create_and_upload() argument
936 pvr_pds_compute_program_destroy( struct pvr_device *const device, const struct VkAllocationCallbacks *const allocator, struct pvr_pds_upload *const pds_program, struct pvr_pds_info *const pds_info) pvr_pds_compute_program_destroy() argument
949 pvr_pds_compute_base_workgroup_variant_program_init( struct pvr_device *const device, const VkAllocationCallbacks *const allocator, const uint32_t local_input_regs[static const PVR_WORKGROUP_DIMENSIONS], const uint32_t work_group_input_regs[static const PVR_WORKGROUP_DIMENSIONS], uint32_t barrier_coefficient, uint32_t usc_temps, pvr_dev_addr_t usc_shader_dev_addr, struct pvr_pds_base_workgroup_program *program_out) pvr_pds_compute_base_workgroup_variant_program_init() argument
1028 pvr_pds_compute_base_workgroup_variant_program_finish( struct pvr_device *device, const VkAllocationCallbacks *const allocator, struct pvr_pds_base_workgroup_program *const state) pvr_pds_compute_base_workgroup_variant_program_finish() argument
1041 pvr_pipeline_init(struct pvr_device *device, enum pvr_pipeline_type type, struct pvr_pipeline *const pipeline) pvr_pipeline_init() argument
1062 pvr_compute_pipeline_compile( struct pvr_device *const device, struct pvr_pipeline_cache *pipeline_cache, const VkComputePipelineCreateInfo *pCreateInfo, const VkAllocationCallbacks *const allocator, struct pvr_compute_pipeline *const compute_pipeline) pvr_compute_pipeline_compile() argument
1185 pvr_compute_pipeline_init(struct pvr_device *device, struct pvr_pipeline_cache *pipeline_cache, const VkComputePipelineCreateInfo *pCreateInfo, const VkAllocationCallbacks *allocator, struct pvr_compute_pipeline *compute_pipeline) pvr_compute_pipeline_init() argument
1214 pvr_compute_pipeline_create(struct pvr_device *device, struct pvr_pipeline_cache *pipeline_cache, const VkComputePipelineCreateInfo *pCreateInfo, const VkAllocationCallbacks *allocator, VkPipeline *const pipeline_out) pvr_compute_pipeline_create() argument
1247 pvr_compute_pipeline_destroy( struct pvr_device *const device, const VkAllocationCallbacks *const allocator, struct pvr_compute_pipeline *const compute_pipeline) pvr_compute_pipeline_destroy() argument
1331 pvr_graphics_pipeline_destroy(struct pvr_device *const device, const VkAllocationCallbacks *const allocator, struct pvr_graphics_pipeline *const gfx_pipeline) pvr_graphics_pipeline_destroy() argument
1442 pvr_graphics_pipeline_compile(struct pvr_device *const device, struct pvr_pipeline_cache *pipeline_cache, const VkGraphicsPipelineCreateInfo *pCreateInfo, const VkAllocationCallbacks *const allocator, struct pvr_graphics_pipeline *const gfx_pipeline) pvr_graphics_pipeline_compile() argument
1837 pvr_graphics_pipeline_init(struct pvr_device *device, struct pvr_pipeline_cache *pipeline_cache, const VkGraphicsPipelineCreateInfo *pCreateInfo, const VkAllocationCallbacks *allocator, struct pvr_graphics_pipeline *gfx_pipeline) pvr_graphics_pipeline_init() argument
1947 pvr_graphics_pipeline_create(struct pvr_device *device, struct pvr_pipeline_cache *pipeline_cache, const VkGraphicsPipelineCreateInfo *pCreateInfo, const VkAllocationCallbacks *allocator, VkPipeline *const pipeline_out) pvr_graphics_pipeline_create() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiExternalMemoryTests.cpp92 vk::VkDevice device, in getMemoryDedicatedRequirements()
115 vkd.getBufferMemoryRequirements2(device, &requirementInfo, &requirements); in getMemoryDedicatedRequirements()
121 vk::VkDevice device, in getMemoryDedicatedRequirements()
144 vkd.getImageMemoryRequirements2(device, &requirementInfo, &requirements); in getMemoryDedicatedRequirements()
150 vk::VkDevice device, in writeHostMemory()
155 void* const ptr = vk::mapMemory(vkd, device, memory, 0, size, 0); in writeHostMemory()
159 flushMappedMemoryRange(vkd, device, memory, 0, VK_WHOLE_SIZE); in writeHostMemory()
161 vkd.unmapMemory(device, memory); in writeHostMemory()
165 vk::VkDevice device, in checkHostMemory()
170 void* const ptr = vk::mapMemory(vkd, device, memor in checkHostMemory()
91 getMemoryDedicatedRequirements(const vk::DeviceInterface& vkd, vk::VkDevice device, vk::VkBuffer buffer) getMemoryDedicatedRequirements() argument
120 getMemoryDedicatedRequirements(const vk::DeviceInterface& vkd, vk::VkDevice device, vk::VkImage image) getMemoryDedicatedRequirements() argument
149 writeHostMemory(const vk::DeviceInterface& vkd, vk::VkDevice device, vk::VkDeviceMemory memory, size_t size, const void* data) writeHostMemory() argument
164 checkHostMemory(const vk::DeviceInterface& vkd, vk::VkDevice device, vk::VkDeviceMemory memory, size_t size, const void* data) checkHostMemory() argument
193 chooseQueueFamilyIndex(const vk::InstanceInterface& vki, vk::VkPhysicalDevice device, vk::VkQueueFlags requireFlags) chooseQueueFamilyIndex() argument
429 getQueue(const vk::DeviceInterface& vkd, vk::VkDevice device, deUint32 queueFamilyIndex) getQueue() argument
449 checkSemaphoreSupport(const vk::InstanceInterface& vki, vk::VkPhysicalDevice device, vk::VkExternalSemaphoreHandleTypeFlagBits externalType) checkSemaphoreSupport() argument
477 checkFenceSupport(const vk::InstanceInterface& vki, vk::VkPhysicalDevice device, vk::VkExternalFenceHandleTypeFlagBits externalType) checkFenceSupport() argument
505 checkBufferSupport(const vk::InstanceInterface& vki, vk::VkPhysicalDevice device, vk::VkExternalMemoryHandleTypeFlagBits externalType, vk::VkBufferViewCreateFlags createFlag, vk::VkBufferUsageFlags usageFlag, bool dedicated) checkBufferSupport() argument
541 checkImageSupport(const vk::InstanceInterface& vki, vk::VkPhysicalDevice device, vk::VkExternalMemoryHandleTypeFlagBits externalType, vk::VkImageViewCreateFlags createFlag, vk::VkImageUsageFlags usageFlag, vk::VkFormat format, vk::VkImageTiling tiling, bool dedicated) checkImageSupport() argument
621 tuneWorkSizeYAndPrepareCommandBuffer( const Context& context, const vk::DeviceInterface& vk, vk::VkDevice device, vk::VkQueue queue, vk::VkCommandBuffer cmdBuffer, vk::VkDescriptorSet descriptorSet, vk::VkPipelineLayout pipelineLayout, vk::VkPipeline computePipeline, vk::VkBufferMemoryBarrier computeFinishBarrier, vk::VkEvent event, tcu::UVec3* maxWorkSize) tuneWorkSizeYAndPrepareCommandBuffer() argument
726 submitAtomicCalculationsAndGetSemaphoreNative(const Context& context, const vk::DeviceInterface& vk, vk::VkDevice device, vk::Allocator& alloc, vk::VkQueue queue, deUint32 queueFamilyIndex, vk::VkSemaphore semaphore, vk::VkExternalSemaphoreHandleTypeFlagBits externalType, NativeHandle& nativeHandle) submitAtomicCalculationsAndGetSemaphoreNative() argument
862 submitAtomicCalculationsAndGetFenceNative(const Context& context, const vk::DeviceInterface& vk, vk::VkDevice device, vk::Allocator& alloc, vk::VkQueue queue, deUint32 queueFamilyIndex, vk::VkFence fence, vk::VkExternalFenceHandleTypeFlagBits externalType, NativeHandle& nativeHandle, bool expectFenceUnsignaled = true) submitAtomicCalculationsAndGetFenceNative() argument
3112 vk::Move<vk::VkDevice> device; testBufferQueries() local
4170 vk::Move<vk::VkDevice> device; testImageQueries() local
4576 ValidateAHardwareBuffer(TestLog& log, vk::VkFormat format, deUint64 requiredAhbUsage, const vk::DeviceDriver& vkd, const vk::VkDevice& device, vk::VkImageUsageFlags usageFlag, vk::VkImageCreateFlags createFlag, deUint32 layerCount, bool& enableMaxLayerTest) ValidateAHardwareBuffer() argument
4656 ValidateOHOSNativeBuffer(TestLog& log, vk::VkFormat format, deUint64 requiredUsage, const vk::DeviceDriver& vkd, const vk::VkDevice& device, vk::VkImageUsageFlags usageFlag, vk::VkImageCreateFlags createFlag, BufferExternalApi* api, deUint32 layerCount, bool& enableMaxLayerTest) ValidateOHOSNativeBuffer() argument
[all...]
/third_party/mesa3d/src/virtio/venus-protocol/
H A Dvn_protocol_driver_query_pool.h73 static inline size_t vn_sizeof_vkCreateQueryPool(VkDevice device, const VkQueryPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkQueryPool* pQueryPool) in vn_sizeof_vkCreateQueryPool() argument
79 cmd_size += vn_sizeof_VkDevice(&device); in vn_sizeof_vkCreateQueryPool()
93 static inline void vn_encode_vkCreateQueryPool(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkQueryPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkQueryPool* pQueryPool) in vn_encode_vkCreateQueryPool() argument
100 vn_encode_VkDevice(enc, &device); in vn_encode_vkCreateQueryPool()
109 static inline size_t vn_sizeof_vkCreateQueryPool_reply(VkDevice device, const VkQueryPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkQueryPool* pQueryPool) in vn_sizeof_vkCreateQueryPool_reply() argument
116 /* skip device */ in vn_sizeof_vkCreateQueryPool_reply()
126 static inline VkResult vn_decode_vkCreateQueryPool_reply(struct vn_cs_decoder *dec, VkDevice device, const VkQueryPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkQueryPool* pQueryPool) in vn_decode_vkCreateQueryPool_reply() argument
134 /* skip device */ in vn_decode_vkCreateQueryPool_reply()
146 static inline size_t vn_sizeof_vkDestroyQueryPool(VkDevice device, VkQueryPool queryPool, const VkAllocationCallbacks* pAllocator) in vn_sizeof_vkDestroyQueryPool() argument
152 cmd_size += vn_sizeof_VkDevice(&device); in vn_sizeof_vkDestroyQueryPool()
161 vn_encode_vkDestroyQueryPool(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkQueryPool queryPool, const VkAllocationCallbacks* pAllocator) vn_encode_vkDestroyQueryPool() argument
174 vn_sizeof_vkDestroyQueryPool_reply(VkDevice device, VkQueryPool queryPool, const VkAllocationCallbacks* pAllocator) vn_sizeof_vkDestroyQueryPool_reply() argument
186 vn_decode_vkDestroyQueryPool_reply(struct vn_cs_decoder *dec, VkDevice device, VkQueryPool queryPool, const VkAllocationCallbacks* pAllocator) vn_decode_vkDestroyQueryPool_reply() argument
197 vn_sizeof_vkGetQueryPoolResults(VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, size_t dataSize, void* pData, VkDeviceSize stride, VkQueryResultFlags flags) vn_sizeof_vkGetQueryPoolResults() argument
215 vn_encode_vkGetQueryPoolResults(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, size_t dataSize, void* pData, VkDeviceSize stride, VkQueryResultFlags flags) vn_encode_vkGetQueryPoolResults() argument
232 vn_sizeof_vkGetQueryPoolResults_reply(VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, size_t dataSize, void* pData, VkDeviceSize stride, VkQueryResultFlags flags) vn_sizeof_vkGetQueryPoolResults_reply() argument
256 vn_decode_vkGetQueryPoolResults_reply(struct vn_cs_decoder *dec, VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, size_t dataSize, void* pData, VkDeviceSize stride, VkQueryResultFlags flags) vn_decode_vkGetQueryPoolResults_reply() argument
282 vn_sizeof_vkResetQueryPool(VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount) vn_sizeof_vkResetQueryPool() argument
296 vn_encode_vkResetQueryPool(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount) vn_encode_vkResetQueryPool() argument
309 vn_sizeof_vkResetQueryPool_reply(VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount) vn_sizeof_vkResetQueryPool_reply() argument
322 vn_decode_vkResetQueryPool_reply(struct vn_cs_decoder *dec, VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount) vn_decode_vkResetQueryPool_reply() argument
334 vn_submit_vkCreateQueryPool(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkQueryPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkQueryPool* pQueryPool, struct vn_instance_submit_command *submit) vn_submit_vkCreateQueryPool() argument
355 vn_submit_vkDestroyQueryPool(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkQueryPool queryPool, const VkAllocationCallbacks* pAllocator, struct vn_instance_submit_command *submit) vn_submit_vkDestroyQueryPool() argument
376 vn_submit_vkGetQueryPoolResults(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, size_t dataSize, void* pData, VkDeviceSize stride, VkQueryResultFlags flags, struct vn_instance_submit_command *submit) vn_submit_vkGetQueryPoolResults() argument
397 vn_submit_vkResetQueryPool(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, struct vn_instance_submit_command *submit) vn_submit_vkResetQueryPool() argument
418 vn_call_vkCreateQueryPool(struct vn_instance *vn_instance, VkDevice device, const VkQueryPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkQueryPool* pQueryPool) vn_call_vkCreateQueryPool() argument
434 vn_async_vkCreateQueryPool(struct vn_instance *vn_instance, VkDevice device, const VkQueryPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkQueryPool* pQueryPool) vn_async_vkCreateQueryPool() argument
440 vn_call_vkDestroyQueryPool(struct vn_instance *vn_instance, VkDevice device, VkQueryPool queryPool, const VkAllocationCallbacks* pAllocator) vn_call_vkDestroyQueryPool() argument
453 vn_async_vkDestroyQueryPool(struct vn_instance *vn_instance, VkDevice device, VkQueryPool queryPool, const VkAllocationCallbacks* pAllocator) vn_async_vkDestroyQueryPool() argument
459 vn_call_vkGetQueryPoolResults(struct vn_instance *vn_instance, VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, size_t dataSize, void* pData, VkDeviceSize stride, VkQueryResultFlags flags) vn_call_vkGetQueryPoolResults() argument
475 vn_async_vkGetQueryPoolResults(struct vn_instance *vn_instance, VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, size_t dataSize, void* pData, VkDeviceSize stride, VkQueryResultFlags flags) vn_async_vkGetQueryPoolResults() argument
481 vn_call_vkResetQueryPool(struct vn_instance *vn_instance, VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount) vn_call_vkResetQueryPool() argument
494 vn_async_vkResetQueryPool(struct vn_instance *vn_instance, VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount) vn_async_vkResetQueryPool() argument
[all...]
H A Dvn_protocol_driver_pipeline_cache.h81 static inline size_t vn_sizeof_vkCreatePipelineCache(VkDevice device, const VkPipelineCacheCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineCache* pPipelineCache) in vn_sizeof_vkCreatePipelineCache() argument
87 cmd_size += vn_sizeof_VkDevice(&device); in vn_sizeof_vkCreatePipelineCache()
101 static inline void vn_encode_vkCreatePipelineCache(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkPipelineCacheCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineCache* pPipelineCache) in vn_encode_vkCreatePipelineCache() argument
108 vn_encode_VkDevice(enc, &device); in vn_encode_vkCreatePipelineCache()
117 static inline size_t vn_sizeof_vkCreatePipelineCache_reply(VkDevice device, const VkPipelineCacheCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineCache* pPipelineCache) in vn_sizeof_vkCreatePipelineCache_reply() argument
124 /* skip device */ in vn_sizeof_vkCreatePipelineCache_reply()
134 static inline VkResult vn_decode_vkCreatePipelineCache_reply(struct vn_cs_decoder *dec, VkDevice device, const VkPipelineCacheCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineCache* pPipelineCache) in vn_decode_vkCreatePipelineCache_reply() argument
142 /* skip device */ in vn_decode_vkCreatePipelineCache_reply()
154 static inline size_t vn_sizeof_vkDestroyPipelineCache(VkDevice device, VkPipelineCache pipelineCache, const VkAllocationCallbacks* pAllocator) in vn_sizeof_vkDestroyPipelineCache() argument
160 cmd_size += vn_sizeof_VkDevice(&device); in vn_sizeof_vkDestroyPipelineCache()
169 vn_encode_vkDestroyPipelineCache(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkPipelineCache pipelineCache, const VkAllocationCallbacks* pAllocator) vn_encode_vkDestroyPipelineCache() argument
182 vn_sizeof_vkDestroyPipelineCache_reply(VkDevice device, VkPipelineCache pipelineCache, const VkAllocationCallbacks* pAllocator) vn_sizeof_vkDestroyPipelineCache_reply() argument
194 vn_decode_vkDestroyPipelineCache_reply(struct vn_cs_decoder *dec, VkDevice device, VkPipelineCache pipelineCache, const VkAllocationCallbacks* pAllocator) vn_decode_vkDestroyPipelineCache_reply() argument
205 vn_sizeof_vkGetPipelineCacheData(VkDevice device, VkPipelineCache pipelineCache, size_t* pDataSize, void* pData) vn_sizeof_vkGetPipelineCacheData() argument
221 vn_encode_vkGetPipelineCacheData(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkPipelineCache pipelineCache, size_t* pDataSize, void* pData) vn_encode_vkGetPipelineCacheData() argument
235 vn_sizeof_vkGetPipelineCacheData_reply(VkDevice device, VkPipelineCache pipelineCache, size_t* pDataSize, void* pData) vn_sizeof_vkGetPipelineCacheData_reply() argument
257 vn_decode_vkGetPipelineCacheData_reply(struct vn_cs_decoder *dec, VkDevice device, VkPipelineCache pipelineCache, size_t* pDataSize, void* pData) vn_decode_vkGetPipelineCacheData_reply() argument
283 vn_sizeof_vkMergePipelineCaches(VkDevice device, VkPipelineCache dstCache, uint32_t srcCacheCount, const VkPipelineCache* pSrcCaches) vn_sizeof_vkMergePipelineCaches() argument
303 vn_encode_vkMergePipelineCaches(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkPipelineCache dstCache, uint32_t srcCacheCount, const VkPipelineCache* pSrcCaches) vn_encode_vkMergePipelineCaches() argument
322 vn_sizeof_vkMergePipelineCaches_reply(VkDevice device, VkPipelineCache dstCache, uint32_t srcCacheCount, const VkPipelineCache* pSrcCaches) vn_sizeof_vkMergePipelineCaches_reply() argument
337 vn_decode_vkMergePipelineCaches_reply(struct vn_cs_decoder *dec, VkDevice device, VkPipelineCache dstCache, uint32_t srcCacheCount, const VkPipelineCache* pSrcCaches) vn_decode_vkMergePipelineCaches_reply() argument
353 vn_submit_vkCreatePipelineCache(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkPipelineCacheCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineCache* pPipelineCache, struct vn_instance_submit_command *submit) vn_submit_vkCreatePipelineCache() argument
374 vn_submit_vkDestroyPipelineCache(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkPipelineCache pipelineCache, const VkAllocationCallbacks* pAllocator, struct vn_instance_submit_command *submit) vn_submit_vkDestroyPipelineCache() argument
395 vn_submit_vkGetPipelineCacheData(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkPipelineCache pipelineCache, size_t* pDataSize, void* pData, struct vn_instance_submit_command *submit) vn_submit_vkGetPipelineCacheData() argument
416 vn_submit_vkMergePipelineCaches(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkPipelineCache dstCache, uint32_t srcCacheCount, const VkPipelineCache* pSrcCaches, struct vn_instance_submit_command *submit) vn_submit_vkMergePipelineCaches() argument
437 vn_call_vkCreatePipelineCache(struct vn_instance *vn_instance, VkDevice device, const VkPipelineCacheCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineCache* pPipelineCache) vn_call_vkCreatePipelineCache() argument
453 vn_async_vkCreatePipelineCache(struct vn_instance *vn_instance, VkDevice device, const VkPipelineCacheCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineCache* pPipelineCache) vn_async_vkCreatePipelineCache() argument
459 vn_call_vkDestroyPipelineCache(struct vn_instance *vn_instance, VkDevice device, VkPipelineCache pipelineCache, const VkAllocationCallbacks* pAllocator) vn_call_vkDestroyPipelineCache() argument
472 vn_async_vkDestroyPipelineCache(struct vn_instance *vn_instance, VkDevice device, VkPipelineCache pipelineCache, const VkAllocationCallbacks* pAllocator) vn_async_vkDestroyPipelineCache() argument
478 vn_call_vkGetPipelineCacheData(struct vn_instance *vn_instance, VkDevice device, VkPipelineCache pipelineCache, size_t* pDataSize, void* pData) vn_call_vkGetPipelineCacheData() argument
494 vn_async_vkGetPipelineCacheData(struct vn_instance *vn_instance, VkDevice device, VkPipelineCache pipelineCache, size_t* pDataSize, void* pData) vn_async_vkGetPipelineCacheData() argument
500 vn_call_vkMergePipelineCaches(struct vn_instance *vn_instance, VkDevice device, VkPipelineCache dstCache, uint32_t srcCacheCount, const VkPipelineCache* pSrcCaches) vn_call_vkMergePipelineCaches() argument
516 vn_async_vkMergePipelineCaches(struct vn_instance *vn_instance, VkDevice device, VkPipelineCache dstCache, uint32_t srcCacheCount, const VkPipelineCache* pSrcCaches) vn_async_vkMergePipelineCaches() argument
[all...]
H A Dvn_protocol_driver_private_data_slot.h67 static inline size_t vn_sizeof_vkCreatePrivateDataSlot(VkDevice device, const VkPrivateDataSlotCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPrivateDataSlot* pPrivateDataSlot) in vn_sizeof_vkCreatePrivateDataSlot() argument
73 cmd_size += vn_sizeof_VkDevice(&device); in vn_sizeof_vkCreatePrivateDataSlot()
87 static inline void vn_encode_vkCreatePrivateDataSlot(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkPrivateDataSlotCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPrivateDataSlot* pPrivateDataSlot) in vn_encode_vkCreatePrivateDataSlot() argument
94 vn_encode_VkDevice(enc, &device); in vn_encode_vkCreatePrivateDataSlot()
103 static inline size_t vn_sizeof_vkCreatePrivateDataSlot_reply(VkDevice device, const VkPrivateDataSlotCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPrivateDataSlot* pPrivateDataSlot) in vn_sizeof_vkCreatePrivateDataSlot_reply() argument
110 /* skip device */ in vn_sizeof_vkCreatePrivateDataSlot_reply()
120 static inline VkResult vn_decode_vkCreatePrivateDataSlot_reply(struct vn_cs_decoder *dec, VkDevice device, const VkPrivateDataSlotCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPrivateDataSlot* pPrivateDataSlot) in vn_decode_vkCreatePrivateDataSlot_reply() argument
128 /* skip device */ in vn_decode_vkCreatePrivateDataSlot_reply()
140 static inline size_t vn_sizeof_vkDestroyPrivateDataSlot(VkDevice device, VkPrivateDataSlot privateDataSlot, const VkAllocationCallbacks* pAllocator) in vn_sizeof_vkDestroyPrivateDataSlot() argument
146 cmd_size += vn_sizeof_VkDevice(&device); in vn_sizeof_vkDestroyPrivateDataSlot()
155 vn_encode_vkDestroyPrivateDataSlot(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkPrivateDataSlot privateDataSlot, const VkAllocationCallbacks* pAllocator) vn_encode_vkDestroyPrivateDataSlot() argument
168 vn_sizeof_vkDestroyPrivateDataSlot_reply(VkDevice device, VkPrivateDataSlot privateDataSlot, const VkAllocationCallbacks* pAllocator) vn_sizeof_vkDestroyPrivateDataSlot_reply() argument
180 vn_decode_vkDestroyPrivateDataSlot_reply(struct vn_cs_decoder *dec, VkDevice device, VkPrivateDataSlot privateDataSlot, const VkAllocationCallbacks* pAllocator) vn_decode_vkDestroyPrivateDataSlot_reply() argument
191 vn_sizeof_vkSetPrivateData(VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t data) vn_sizeof_vkSetPrivateData() argument
206 vn_encode_vkSetPrivateData(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t data) vn_encode_vkSetPrivateData() argument
220 vn_sizeof_vkSetPrivateData_reply(VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t data) vn_sizeof_vkSetPrivateData_reply() argument
236 vn_decode_vkSetPrivateData_reply(struct vn_cs_decoder *dec, VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t data) vn_decode_vkSetPrivateData_reply() argument
253 vn_sizeof_vkGetPrivateData(VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t* pData) vn_sizeof_vkGetPrivateData() argument
268 vn_encode_vkGetPrivateData(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t* pData) vn_encode_vkGetPrivateData() argument
282 vn_sizeof_vkGetPrivateData_reply(VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t* pData) vn_sizeof_vkGetPrivateData_reply() argument
298 vn_decode_vkGetPrivateData_reply(struct vn_cs_decoder *dec, VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t* pData) vn_decode_vkGetPrivateData_reply() argument
315 vn_submit_vkCreatePrivateDataSlot(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkPrivateDataSlotCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPrivateDataSlot* pPrivateDataSlot, struct vn_instance_submit_command *submit) vn_submit_vkCreatePrivateDataSlot() argument
336 vn_submit_vkDestroyPrivateDataSlot(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkPrivateDataSlot privateDataSlot, const VkAllocationCallbacks* pAllocator, struct vn_instance_submit_command *submit) vn_submit_vkDestroyPrivateDataSlot() argument
357 vn_submit_vkSetPrivateData(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t data, struct vn_instance_submit_command *submit) vn_submit_vkSetPrivateData() argument
378 vn_submit_vkGetPrivateData(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t* pData, struct vn_instance_submit_command *submit) vn_submit_vkGetPrivateData() argument
399 vn_call_vkCreatePrivateDataSlot(struct vn_instance *vn_instance, VkDevice device, const VkPrivateDataSlotCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPrivateDataSlot* pPrivateDataSlot) vn_call_vkCreatePrivateDataSlot() argument
415 vn_async_vkCreatePrivateDataSlot(struct vn_instance *vn_instance, VkDevice device, const VkPrivateDataSlotCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPrivateDataSlot* pPrivateDataSlot) vn_async_vkCreatePrivateDataSlot() argument
421 vn_call_vkDestroyPrivateDataSlot(struct vn_instance *vn_instance, VkDevice device, VkPrivateDataSlot privateDataSlot, const VkAllocationCallbacks* pAllocator) vn_call_vkDestroyPrivateDataSlot() argument
434 vn_async_vkDestroyPrivateDataSlot(struct vn_instance *vn_instance, VkDevice device, VkPrivateDataSlot privateDataSlot, const VkAllocationCallbacks* pAllocator) vn_async_vkDestroyPrivateDataSlot() argument
440 vn_call_vkSetPrivateData(struct vn_instance *vn_instance, VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t data) vn_call_vkSetPrivateData() argument
456 vn_async_vkSetPrivateData(struct vn_instance *vn_instance, VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t data) vn_async_vkSetPrivateData() argument
462 vn_call_vkGetPrivateData(struct vn_instance *vn_instance, VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t* pData) vn_call_vkGetPrivateData() argument
475 vn_async_vkGetPrivateData(struct vn_instance *vn_instance, VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t* pData) vn_async_vkGetPrivateData() argument
[all...]
H A Dvn_protocol_driver_device_memory.h538 static inline size_t vn_sizeof_vkAllocateMemory(VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, const VkAllocationCallbacks* pAllocator, VkDeviceMemory* pMemory) in vn_sizeof_vkAllocateMemory() argument
544 cmd_size += vn_sizeof_VkDevice(&device); in vn_sizeof_vkAllocateMemory()
558 static inline void vn_encode_vkAllocateMemory(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, const VkAllocationCallbacks* pAllocator, VkDeviceMemory* pMemory) in vn_encode_vkAllocateMemory() argument
565 vn_encode_VkDevice(enc, &device); in vn_encode_vkAllocateMemory()
574 static inline size_t vn_sizeof_vkAllocateMemory_reply(VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, const VkAllocationCallbacks* pAllocator, VkDeviceMemory* pMemory) in vn_sizeof_vkAllocateMemory_reply() argument
581 /* skip device */ in vn_sizeof_vkAllocateMemory_reply()
591 static inline VkResult vn_decode_vkAllocateMemory_reply(struct vn_cs_decoder *dec, VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, const VkAllocationCallbacks* pAllocator, VkDeviceMemory* pMemory) in vn_decode_vkAllocateMemory_reply() argument
599 /* skip device */ in vn_decode_vkAllocateMemory_reply()
611 static inline size_t vn_sizeof_vkFreeMemory(VkDevice device, VkDeviceMemory memory, const VkAllocationCallbacks* pAllocator) in vn_sizeof_vkFreeMemory() argument
617 cmd_size += vn_sizeof_VkDevice(&device); in vn_sizeof_vkFreeMemory()
626 vn_encode_vkFreeMemory(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkDeviceMemory memory, const VkAllocationCallbacks* pAllocator) vn_encode_vkFreeMemory() argument
639 vn_sizeof_vkFreeMemory_reply(VkDevice device, VkDeviceMemory memory, const VkAllocationCallbacks* pAllocator) vn_sizeof_vkFreeMemory_reply() argument
651 vn_decode_vkFreeMemory_reply(struct vn_cs_decoder *dec, VkDevice device, VkDeviceMemory memory, const VkAllocationCallbacks* pAllocator) vn_decode_vkFreeMemory_reply() argument
662 vn_sizeof_vkUnmapMemory(VkDevice device, VkDeviceMemory memory) vn_sizeof_vkUnmapMemory() argument
674 vn_encode_vkUnmapMemory(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkDeviceMemory memory) vn_encode_vkUnmapMemory() argument
685 vn_sizeof_vkUnmapMemory_reply(VkDevice device, VkDeviceMemory memory) vn_sizeof_vkUnmapMemory_reply() argument
696 vn_decode_vkUnmapMemory_reply(struct vn_cs_decoder *dec, VkDevice device, VkDeviceMemory memory) vn_decode_vkUnmapMemory_reply() argument
706 vn_sizeof_vkFlushMappedMemoryRanges(VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges) vn_sizeof_vkFlushMappedMemoryRanges() argument
725 vn_encode_vkFlushMappedMemoryRanges(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges) vn_encode_vkFlushMappedMemoryRanges() argument
743 vn_sizeof_vkFlushMappedMemoryRanges_reply(VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges) vn_sizeof_vkFlushMappedMemoryRanges_reply() argument
757 vn_decode_vkFlushMappedMemoryRanges_reply(struct vn_cs_decoder *dec, VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges) vn_decode_vkFlushMappedMemoryRanges_reply() argument
772 vn_sizeof_vkInvalidateMappedMemoryRanges(VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges) vn_sizeof_vkInvalidateMappedMemoryRanges() argument
791 vn_encode_vkInvalidateMappedMemoryRanges(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges) vn_encode_vkInvalidateMappedMemoryRanges() argument
809 vn_sizeof_vkInvalidateMappedMemoryRanges_reply(VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges) vn_sizeof_vkInvalidateMappedMemoryRanges_reply() argument
823 vn_decode_vkInvalidateMappedMemoryRanges_reply(struct vn_cs_decoder *dec, VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges) vn_decode_vkInvalidateMappedMemoryRanges_reply() argument
838 vn_sizeof_vkGetDeviceMemoryCommitment(VkDevice device, VkDeviceMemory memory, VkDeviceSize* pCommittedMemoryInBytes) vn_sizeof_vkGetDeviceMemoryCommitment() argument
851 vn_encode_vkGetDeviceMemoryCommitment(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkDeviceMemory memory, VkDeviceSize* pCommittedMemoryInBytes) vn_encode_vkGetDeviceMemoryCommitment() argument
863 vn_sizeof_vkGetDeviceMemoryCommitment_reply(VkDevice device, VkDeviceMemory memory, VkDeviceSize* pCommittedMemoryInBytes) vn_sizeof_vkGetDeviceMemoryCommitment_reply() argument
877 vn_decode_vkGetDeviceMemoryCommitment_reply(struct vn_cs_decoder *dec, VkDevice device, VkDeviceMemory memory, VkDeviceSize* pCommittedMemoryInBytes) vn_decode_vkGetDeviceMemoryCommitment_reply() argument
892 vn_sizeof_vkGetDeviceMemoryOpaqueCaptureAddress(VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo) vn_sizeof_vkGetDeviceMemoryOpaqueCaptureAddress() argument
906 vn_encode_vkGetDeviceMemoryOpaqueCaptureAddress(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo) vn_encode_vkGetDeviceMemoryOpaqueCaptureAddress() argument
918 vn_sizeof_vkGetDeviceMemoryOpaqueCaptureAddress_reply(VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo) vn_sizeof_vkGetDeviceMemoryOpaqueCaptureAddress_reply() argument
931 vn_decode_vkGetDeviceMemoryOpaqueCaptureAddress_reply(struct vn_cs_decoder *dec, VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo) vn_decode_vkGetDeviceMemoryOpaqueCaptureAddress_reply() argument
945 vn_submit_vkAllocateMemory(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, const VkAllocationCallbacks* pAllocator, VkDeviceMemory* pMemory, struct vn_instance_submit_command *submit) vn_submit_vkAllocateMemory() argument
966 vn_submit_vkFreeMemory(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkDeviceMemory memory, const VkAllocationCallbacks* pAllocator, struct vn_instance_submit_command *submit) vn_submit_vkFreeMemory() argument
987 vn_submit_vkUnmapMemory(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkDeviceMemory memory, struct vn_instance_submit_command *submit) vn_submit_vkUnmapMemory() argument
1008 vn_submit_vkFlushMappedMemoryRanges(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges, struct vn_instance_submit_command *submit) vn_submit_vkFlushMappedMemoryRanges() argument
1029 vn_submit_vkInvalidateMappedMemoryRanges(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges, struct vn_instance_submit_command *submit) vn_submit_vkInvalidateMappedMemoryRanges() argument
1050 vn_submit_vkGetDeviceMemoryCommitment(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkDeviceMemory memory, VkDeviceSize* pCommittedMemoryInBytes, struct vn_instance_submit_command *submit) vn_submit_vkGetDeviceMemoryCommitment() argument
1071 vn_submit_vkGetDeviceMemoryOpaqueCaptureAddress(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo, struct vn_instance_submit_command *submit) vn_submit_vkGetDeviceMemoryOpaqueCaptureAddress() argument
1092 vn_call_vkAllocateMemory(struct vn_instance *vn_instance, VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, const VkAllocationCallbacks* pAllocator, VkDeviceMemory* pMemory) vn_call_vkAllocateMemory() argument
1108 vn_async_vkAllocateMemory(struct vn_instance *vn_instance, VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, const VkAllocationCallbacks* pAllocator, VkDeviceMemory* pMemory) vn_async_vkAllocateMemory() argument
1114 vn_call_vkFreeMemory(struct vn_instance *vn_instance, VkDevice device, VkDeviceMemory memory, const VkAllocationCallbacks* pAllocator) vn_call_vkFreeMemory() argument
1127 vn_async_vkFreeMemory(struct vn_instance *vn_instance, VkDevice device, VkDeviceMemory memory, const VkAllocationCallbacks* pAllocator) vn_async_vkFreeMemory() argument
1133 vn_call_vkUnmapMemory(struct vn_instance *vn_instance, VkDevice device, VkDeviceMemory memory) vn_call_vkUnmapMemory() argument
1146 vn_async_vkUnmapMemory(struct vn_instance *vn_instance, VkDevice device, VkDeviceMemory memory) vn_async_vkUnmapMemory() argument
1152 vn_call_vkFlushMappedMemoryRanges(struct vn_instance *vn_instance, VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges) vn_call_vkFlushMappedMemoryRanges() argument
1168 vn_async_vkFlushMappedMemoryRanges(struct vn_instance *vn_instance, VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges) vn_async_vkFlushMappedMemoryRanges() argument
1174 vn_call_vkInvalidateMappedMemoryRanges(struct vn_instance *vn_instance, VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges) vn_call_vkInvalidateMappedMemoryRanges() argument
1190 vn_async_vkInvalidateMappedMemoryRanges(struct vn_instance *vn_instance, VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges) vn_async_vkInvalidateMappedMemoryRanges() argument
1196 vn_call_vkGetDeviceMemoryCommitment(struct vn_instance *vn_instance, VkDevice device, VkDeviceMemory memory, VkDeviceSize* pCommittedMemoryInBytes) vn_call_vkGetDeviceMemoryCommitment() argument
1209 vn_async_vkGetDeviceMemoryCommitment(struct vn_instance *vn_instance, VkDevice device, VkDeviceMemory memory, VkDeviceSize* pCommittedMemoryInBytes) vn_async_vkGetDeviceMemoryCommitment() argument
1215 vn_call_vkGetDeviceMemoryOpaqueCaptureAddress(struct vn_instance *vn_instance, VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo) vn_call_vkGetDeviceMemoryOpaqueCaptureAddress() argument
1231 vn_async_vkGetDeviceMemoryOpaqueCaptureAddress(struct vn_instance *vn_instance, VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo) vn_async_vkGetDeviceMemoryOpaqueCaptureAddress() argument
[all...]
H A Dvn_protocol_driver_semaphore.h301 static inline size_t vn_sizeof_vkCreateSemaphore(VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore) in vn_sizeof_vkCreateSemaphore() argument
307 cmd_size += vn_sizeof_VkDevice(&device); in vn_sizeof_vkCreateSemaphore()
321 static inline void vn_encode_vkCreateSemaphore(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore) in vn_encode_vkCreateSemaphore() argument
328 vn_encode_VkDevice(enc, &device); in vn_encode_vkCreateSemaphore()
337 static inline size_t vn_sizeof_vkCreateSemaphore_reply(VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore) in vn_sizeof_vkCreateSemaphore_reply() argument
344 /* skip device */ in vn_sizeof_vkCreateSemaphore_reply()
354 static inline VkResult vn_decode_vkCreateSemaphore_reply(struct vn_cs_decoder *dec, VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore) in vn_decode_vkCreateSemaphore_reply() argument
362 /* skip device */ in vn_decode_vkCreateSemaphore_reply()
374 static inline size_t vn_sizeof_vkDestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* pAllocator) in vn_sizeof_vkDestroySemaphore() argument
380 cmd_size += vn_sizeof_VkDevice(&device); in vn_sizeof_vkDestroySemaphore()
389 vn_encode_vkDestroySemaphore(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* pAllocator) vn_encode_vkDestroySemaphore() argument
402 vn_sizeof_vkDestroySemaphore_reply(VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* pAllocator) vn_sizeof_vkDestroySemaphore_reply() argument
414 vn_decode_vkDestroySemaphore_reply(struct vn_cs_decoder *dec, VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* pAllocator) vn_decode_vkDestroySemaphore_reply() argument
425 vn_sizeof_vkGetSemaphoreCounterValue(VkDevice device, VkSemaphore semaphore, uint64_t* pValue) vn_sizeof_vkGetSemaphoreCounterValue() argument
438 vn_encode_vkGetSemaphoreCounterValue(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkSemaphore semaphore, uint64_t* pValue) vn_encode_vkGetSemaphoreCounterValue() argument
450 vn_sizeof_vkGetSemaphoreCounterValue_reply(VkDevice device, VkSemaphore semaphore, uint64_t* pValue) vn_sizeof_vkGetSemaphoreCounterValue_reply() argument
466 vn_decode_vkGetSemaphoreCounterValue_reply(struct vn_cs_decoder *dec, VkDevice device, VkSemaphore semaphore, uint64_t* pValue) vn_decode_vkGetSemaphoreCounterValue_reply() argument
485 vn_sizeof_vkWaitSemaphores(VkDevice device, const VkSemaphoreWaitInfo* pWaitInfo, uint64_t timeout) vn_sizeof_vkWaitSemaphores() argument
500 vn_encode_vkWaitSemaphores(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkSemaphoreWaitInfo* pWaitInfo, uint64_t timeout) vn_encode_vkWaitSemaphores() argument
513 vn_sizeof_vkWaitSemaphores_reply(VkDevice device, const VkSemaphoreWaitInfo* pWaitInfo, uint64_t timeout) vn_sizeof_vkWaitSemaphores_reply() argument
527 vn_decode_vkWaitSemaphores_reply(struct vn_cs_decoder *dec, VkDevice device, const VkSemaphoreWaitInfo* pWaitInfo, uint64_t timeout) vn_decode_vkWaitSemaphores_reply() argument
542 vn_sizeof_vkSignalSemaphore(VkDevice device, const VkSemaphoreSignalInfo* pSignalInfo) vn_sizeof_vkSignalSemaphore() argument
556 vn_encode_vkSignalSemaphore(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkSemaphoreSignalInfo* pSignalInfo) vn_encode_vkSignalSemaphore() argument
568 vn_sizeof_vkSignalSemaphore_reply(VkDevice device, const VkSemaphoreSignalInfo* pSignalInfo) vn_sizeof_vkSignalSemaphore_reply() argument
581 vn_decode_vkSignalSemaphore_reply(struct vn_cs_decoder *dec, VkDevice device, const VkSemaphoreSignalInfo* pSignalInfo) vn_decode_vkSignalSemaphore_reply() argument
595 vn_submit_vkCreateSemaphore(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore, struct vn_instance_submit_command *submit) vn_submit_vkCreateSemaphore() argument
616 vn_submit_vkDestroySemaphore(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* pAllocator, struct vn_instance_submit_command *submit) vn_submit_vkDestroySemaphore() argument
637 vn_submit_vkGetSemaphoreCounterValue(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkSemaphore semaphore, uint64_t* pValue, struct vn_instance_submit_command *submit) vn_submit_vkGetSemaphoreCounterValue() argument
658 vn_submit_vkWaitSemaphores(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkSemaphoreWaitInfo* pWaitInfo, uint64_t timeout, struct vn_instance_submit_command *submit) vn_submit_vkWaitSemaphores() argument
679 vn_submit_vkSignalSemaphore(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkSemaphoreSignalInfo* pSignalInfo, struct vn_instance_submit_command *submit) vn_submit_vkSignalSemaphore() argument
700 vn_call_vkCreateSemaphore(struct vn_instance *vn_instance, VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore) vn_call_vkCreateSemaphore() argument
716 vn_async_vkCreateSemaphore(struct vn_instance *vn_instance, VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore) vn_async_vkCreateSemaphore() argument
722 vn_call_vkDestroySemaphore(struct vn_instance *vn_instance, VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* pAllocator) vn_call_vkDestroySemaphore() argument
735 vn_async_vkDestroySemaphore(struct vn_instance *vn_instance, VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* pAllocator) vn_async_vkDestroySemaphore() argument
741 vn_call_vkGetSemaphoreCounterValue(struct vn_instance *vn_instance, VkDevice device, VkSemaphore semaphore, uint64_t* pValue) vn_call_vkGetSemaphoreCounterValue() argument
757 vn_async_vkGetSemaphoreCounterValue(struct vn_instance *vn_instance, VkDevice device, VkSemaphore semaphore, uint64_t* pValue) vn_async_vkGetSemaphoreCounterValue() argument
763 vn_call_vkWaitSemaphores(struct vn_instance *vn_instance, VkDevice device, const VkSemaphoreWaitInfo* pWaitInfo, uint64_t timeout) vn_call_vkWaitSemaphores() argument
779 vn_async_vkWaitSemaphores(struct vn_instance *vn_instance, VkDevice device, const VkSemaphoreWaitInfo* pWaitInfo, uint64_t timeout) vn_async_vkWaitSemaphores() argument
785 vn_call_vkSignalSemaphore(struct vn_instance *vn_instance, VkDevice device, const VkSemaphoreSignalInfo* pSignalInfo) vn_call_vkSignalSemaphore() argument
801 vn_async_vkSignalSemaphore(struct vn_instance *vn_instance, VkDevice device, const VkSemaphoreSignalInfo* pSignalInfo) vn_async_vkSignalSemaphore() argument
[all...]
H A Dvn_protocol_driver_fence.h159 static inline size_t vn_sizeof_vkCreateFence(VkDevice device, const VkFenceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkFence* pFence) in vn_sizeof_vkCreateFence() argument
165 cmd_size += vn_sizeof_VkDevice(&device); in vn_sizeof_vkCreateFence()
179 static inline void vn_encode_vkCreateFence(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkFenceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkFence* pFence) in vn_encode_vkCreateFence() argument
186 vn_encode_VkDevice(enc, &device); in vn_encode_vkCreateFence()
195 static inline size_t vn_sizeof_vkCreateFence_reply(VkDevice device, const VkFenceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkFence* pFence) in vn_sizeof_vkCreateFence_reply() argument
202 /* skip device */ in vn_sizeof_vkCreateFence_reply()
212 static inline VkResult vn_decode_vkCreateFence_reply(struct vn_cs_decoder *dec, VkDevice device, const VkFenceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkFence* pFence) in vn_decode_vkCreateFence_reply() argument
220 /* skip device */ in vn_decode_vkCreateFence_reply()
232 static inline size_t vn_sizeof_vkDestroyFence(VkDevice device, VkFence fence, const VkAllocationCallbacks* pAllocator) in vn_sizeof_vkDestroyFence() argument
238 cmd_size += vn_sizeof_VkDevice(&device); in vn_sizeof_vkDestroyFence()
247 vn_encode_vkDestroyFence(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkFence fence, const VkAllocationCallbacks* pAllocator) vn_encode_vkDestroyFence() argument
260 vn_sizeof_vkDestroyFence_reply(VkDevice device, VkFence fence, const VkAllocationCallbacks* pAllocator) vn_sizeof_vkDestroyFence_reply() argument
272 vn_decode_vkDestroyFence_reply(struct vn_cs_decoder *dec, VkDevice device, VkFence fence, const VkAllocationCallbacks* pAllocator) vn_decode_vkDestroyFence_reply() argument
283 vn_sizeof_vkResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences) vn_sizeof_vkResetFences() argument
302 vn_encode_vkResetFences(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, uint32_t fenceCount, const VkFence* pFences) vn_encode_vkResetFences() argument
320 vn_sizeof_vkResetFences_reply(VkDevice device, uint32_t fenceCount, const VkFence* pFences) vn_sizeof_vkResetFences_reply() argument
334 vn_decode_vkResetFences_reply(struct vn_cs_decoder *dec, VkDevice device, uint32_t fenceCount, const VkFence* pFences) vn_decode_vkResetFences_reply() argument
349 vn_sizeof_vkGetFenceStatus(VkDevice device, VkFence fence) vn_sizeof_vkGetFenceStatus() argument
361 vn_encode_vkGetFenceStatus(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkFence fence) vn_encode_vkGetFenceStatus() argument
372 vn_sizeof_vkGetFenceStatus_reply(VkDevice device, VkFence fence) vn_sizeof_vkGetFenceStatus_reply() argument
385 vn_decode_vkGetFenceStatus_reply(struct vn_cs_decoder *dec, VkDevice device, VkFence fence) vn_decode_vkGetFenceStatus_reply() argument
399 vn_sizeof_vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) vn_sizeof_vkWaitForFences() argument
420 vn_encode_vkWaitForFences(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) vn_encode_vkWaitForFences() argument
440 vn_sizeof_vkWaitForFences_reply(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) vn_sizeof_vkWaitForFences_reply() argument
456 vn_decode_vkWaitForFences_reply(struct vn_cs_decoder *dec, VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) vn_decode_vkWaitForFences_reply() argument
473 vn_submit_vkCreateFence(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkFenceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkFence* pFence, struct vn_instance_submit_command *submit) vn_submit_vkCreateFence() argument
494 vn_submit_vkDestroyFence(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkFence fence, const VkAllocationCallbacks* pAllocator, struct vn_instance_submit_command *submit) vn_submit_vkDestroyFence() argument
515 vn_submit_vkResetFences(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, uint32_t fenceCount, const VkFence* pFences, struct vn_instance_submit_command *submit) vn_submit_vkResetFences() argument
536 vn_submit_vkGetFenceStatus(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkFence fence, struct vn_instance_submit_command *submit) vn_submit_vkGetFenceStatus() argument
557 vn_submit_vkWaitForFences(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout, struct vn_instance_submit_command *submit) vn_submit_vkWaitForFences() argument
578 vn_call_vkCreateFence(struct vn_instance *vn_instance, VkDevice device, const VkFenceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkFence* pFence) vn_call_vkCreateFence() argument
594 vn_async_vkCreateFence(struct vn_instance *vn_instance, VkDevice device, const VkFenceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkFence* pFence) vn_async_vkCreateFence() argument
600 vn_call_vkDestroyFence(struct vn_instance *vn_instance, VkDevice device, VkFence fence, const VkAllocationCallbacks* pAllocator) vn_call_vkDestroyFence() argument
613 vn_async_vkDestroyFence(struct vn_instance *vn_instance, VkDevice device, VkFence fence, const VkAllocationCallbacks* pAllocator) vn_async_vkDestroyFence() argument
619 vn_call_vkResetFences(struct vn_instance *vn_instance, VkDevice device, uint32_t fenceCount, const VkFence* pFences) vn_call_vkResetFences() argument
635 vn_async_vkResetFences(struct vn_instance *vn_instance, VkDevice device, uint32_t fenceCount, const VkFence* pFences) vn_async_vkResetFences() argument
641 vn_call_vkGetFenceStatus(struct vn_instance *vn_instance, VkDevice device, VkFence fence) vn_call_vkGetFenceStatus() argument
657 vn_async_vkGetFenceStatus(struct vn_instance *vn_instance, VkDevice device, VkFence fence) vn_async_vkGetFenceStatus() argument
663 vn_call_vkWaitForFences(struct vn_instance *vn_instance, VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) vn_call_vkWaitForFences() argument
679 vn_async_vkWaitForFences(struct vn_instance *vn_instance, VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) vn_async_vkWaitForFences() argument
[all...]
H A Dvn_protocol_driver_descriptor_pool.h193 static inline size_t vn_sizeof_vkCreateDescriptorPool(VkDevice device, const VkDescriptorPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDescriptorPool* pDescriptorPool) in vn_sizeof_vkCreateDescriptorPool() argument
199 cmd_size += vn_sizeof_VkDevice(&device); in vn_sizeof_vkCreateDescriptorPool()
213 static inline void vn_encode_vkCreateDescriptorPool(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkDescriptorPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDescriptorPool* pDescriptorPool) in vn_encode_vkCreateDescriptorPool() argument
220 vn_encode_VkDevice(enc, &device); in vn_encode_vkCreateDescriptorPool()
229 static inline size_t vn_sizeof_vkCreateDescriptorPool_reply(VkDevice device, const VkDescriptorPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDescriptorPool* pDescriptorPool) in vn_sizeof_vkCreateDescriptorPool_reply() argument
236 /* skip device */ in vn_sizeof_vkCreateDescriptorPool_reply()
246 static inline VkResult vn_decode_vkCreateDescriptorPool_reply(struct vn_cs_decoder *dec, VkDevice device, const VkDescriptorPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDescriptorPool* pDescriptorPool) in vn_decode_vkCreateDescriptorPool_reply() argument
254 /* skip device */ in vn_decode_vkCreateDescriptorPool_reply()
266 static inline size_t vn_sizeof_vkDestroyDescriptorPool(VkDevice device, VkDescriptorPool descriptorPool, const VkAllocationCallbacks* pAllocator) in vn_sizeof_vkDestroyDescriptorPool() argument
272 cmd_size += vn_sizeof_VkDevice(&device); in vn_sizeof_vkDestroyDescriptorPool()
281 vn_encode_vkDestroyDescriptorPool(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkDescriptorPool descriptorPool, const VkAllocationCallbacks* pAllocator) vn_encode_vkDestroyDescriptorPool() argument
294 vn_sizeof_vkDestroyDescriptorPool_reply(VkDevice device, VkDescriptorPool descriptorPool, const VkAllocationCallbacks* pAllocator) vn_sizeof_vkDestroyDescriptorPool_reply() argument
306 vn_decode_vkDestroyDescriptorPool_reply(struct vn_cs_decoder *dec, VkDevice device, VkDescriptorPool descriptorPool, const VkAllocationCallbacks* pAllocator) vn_decode_vkDestroyDescriptorPool_reply() argument
317 vn_sizeof_vkResetDescriptorPool(VkDevice device, VkDescriptorPool descriptorPool, VkDescriptorPoolResetFlags flags) vn_sizeof_vkResetDescriptorPool() argument
330 vn_encode_vkResetDescriptorPool(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkDescriptorPool descriptorPool, VkDescriptorPoolResetFlags flags) vn_encode_vkResetDescriptorPool() argument
342 vn_sizeof_vkResetDescriptorPool_reply(VkDevice device, VkDescriptorPool descriptorPool, VkDescriptorPoolResetFlags flags) vn_sizeof_vkResetDescriptorPool_reply() argument
356 vn_decode_vkResetDescriptorPool_reply(struct vn_cs_decoder *dec, VkDevice device, VkDescriptorPool descriptorPool, VkDescriptorPoolResetFlags flags) vn_decode_vkResetDescriptorPool_reply() argument
371 vn_submit_vkCreateDescriptorPool(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkDescriptorPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDescriptorPool* pDescriptorPool, struct vn_instance_submit_command *submit) vn_submit_vkCreateDescriptorPool() argument
392 vn_submit_vkDestroyDescriptorPool(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkDescriptorPool descriptorPool, const VkAllocationCallbacks* pAllocator, struct vn_instance_submit_command *submit) vn_submit_vkDestroyDescriptorPool() argument
413 vn_submit_vkResetDescriptorPool(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkDescriptorPool descriptorPool, VkDescriptorPoolResetFlags flags, struct vn_instance_submit_command *submit) vn_submit_vkResetDescriptorPool() argument
434 vn_call_vkCreateDescriptorPool(struct vn_instance *vn_instance, VkDevice device, const VkDescriptorPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDescriptorPool* pDescriptorPool) vn_call_vkCreateDescriptorPool() argument
450 vn_async_vkCreateDescriptorPool(struct vn_instance *vn_instance, VkDevice device, const VkDescriptorPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDescriptorPool* pDescriptorPool) vn_async_vkCreateDescriptorPool() argument
456 vn_call_vkDestroyDescriptorPool(struct vn_instance *vn_instance, VkDevice device, VkDescriptorPool descriptorPool, const VkAllocationCallbacks* pAllocator) vn_call_vkDestroyDescriptorPool() argument
469 vn_async_vkDestroyDescriptorPool(struct vn_instance *vn_instance, VkDevice device, VkDescriptorPool descriptorPool, const VkAllocationCallbacks* pAllocator) vn_async_vkDestroyDescriptorPool() argument
475 vn_call_vkResetDescriptorPool(struct vn_instance *vn_instance, VkDevice device, VkDescriptorPool descriptorPool, VkDescriptorPoolResetFlags flags) vn_call_vkResetDescriptorPool() argument
491 vn_async_vkResetDescriptorPool(struct vn_instance *vn_instance, VkDevice device, VkDescriptorPool descriptorPool, VkDescriptorPoolResetFlags flags) vn_async_vkResetDescriptorPool() argument
[all...]
/drivers/hdf_core/adapter/platform/pwm/
H A Dpwm_bes.c99 static uint32_t GetPwmDeviceResource(struct PwmDevice *device, const char *deviceMatchAttr) in GetPwmDeviceResource() argument
103 if (device == NULL || deviceMatchAttr == NULL) { in GetPwmDeviceResource()
104 HDF_LOGE("%s: device or deviceMatchAttr is NULL", __func__); in GetPwmDeviceResource()
107 resource = &device->resource; in GetPwmDeviceResource()
118 struct PwmDevice *device, const struct DeviceResourceNode *resourceNode) in GetPwmDeviceResource()
123 if (device == NULL || resourceNode == NULL) { in GetPwmDeviceResource()
124 HDF_LOGE("resource or device is NULL\r\n"); in GetPwmDeviceResource()
128 resource = &device->resource; in GetPwmDeviceResource()
154 static int32_t AttachPwmDevice(struct PwmDev *host, const struct HdfDeviceObject *device) argument
159 if (device
117 GetPwmDeviceResource( struct PwmDevice *device, const struct DeviceResourceNode *resourceNode) GetPwmDeviceResource() argument
204 PwmDriverBind(struct HdfDeviceObject *device) global() argument
220 PwmDriverInit(struct HdfDeviceObject *device) global() argument
256 PwmDriverRelease(struct HdfDeviceObject *device) global() argument
[all...]
/drivers/hdf_core/framework/test/unittest/platform/virtual/
H A Dadc_virtual.c22 struct AdcDevice device; member
29 static int32_t VirtualAdcStart(struct AdcDevice *device) in VirtualAdcStart() argument
33 if (device == NULL) { in VirtualAdcStart()
34 HDF_LOGE("VirtualAdcStart: device is null!"); in VirtualAdcStart()
38 virtual = (struct VirtualAdcDevice *)device; in VirtualAdcStart()
44 static int32_t VirtualAdcRead(struct AdcDevice *device, uint32_t channel, uint32_t *val) in VirtualAdcRead() argument
48 if (device == NULL) { in VirtualAdcRead()
49 HDF_LOGE("VirtualAdcRead: device is null!"); in VirtualAdcRead()
53 virtual = (struct VirtualAdcDevice *)device; in VirtualAdcRead()
63 static int32_t VirtualAdcStop(struct AdcDevice *device) in VirtualAdcStop() argument
109 VirtualAdcInit(struct HdfDeviceObject *device) VirtualAdcInit() argument
146 VirtualAdcRelease(struct HdfDeviceObject *device) VirtualAdcRelease() argument
[all...]
/third_party/mesa3d/src/gallium/frontends/lavapipe/
H A Dlvp_pipe_sync.c53 struct lvp_device *device = container_of(vk_device, struct lvp_device, vk); in lvp_pipe_sync_finish() local
58 device->pscreen->fence_reference(device->pscreen, &sync->fence, NULL); in lvp_pipe_sync_finish()
64 lvp_pipe_sync_signal_with_fence(struct lvp_device *device, in lvp_pipe_sync_signal_with_fence() argument
71 device->pscreen->fence_reference(device->pscreen, &sync->fence, fence); in lvp_pipe_sync_signal_with_fence()
81 struct lvp_device *device = container_of(vk_device, struct lvp_device, vk); in lvp_pipe_sync_signal() local
88 device->pscreen->fence_reference(device->pscreen, &sync->fence, NULL); in lvp_pipe_sync_signal()
99 struct lvp_device *device in lvp_pipe_sync_reset() local
118 struct lvp_device *device = container_of(vk_device, struct lvp_device, vk); lvp_pipe_sync_move() local
143 lvp_pipe_sync_wait_locked(struct lvp_device *device, struct lvp_pipe_sync *sync, uint64_t wait_value, enum vk_sync_wait_flags wait_flags, uint64_t abs_timeout_ns) lvp_pipe_sync_wait_locked() argument
229 struct lvp_device *device = container_of(vk_device, struct lvp_device, vk); lvp_pipe_sync_wait() local
[all...]
H A Dlvp_image.c35 LVP_FROM_HANDLE(lvp_device, device, _device); in lvp_image_create()
40 image = vk_image_create(&device->vk, pCreateInfo, alloc, sizeof(*image)); in lvp_image_create()
42 return vk_error(device, VK_ERROR_OUT_OF_HOST_MEMORY); in lvp_image_create()
50 template.screen = device->pscreen; in lvp_image_create()
99 image->bo = device->pscreen->resource_create_unbacked(device->pscreen, in lvp_image_create()
103 return vk_error(device, VK_ERROR_OUT_OF_HOST_MEMORY); in lvp_image_create()
119 lvp_image_from_swapchain(VkDevice device, in lvp_image_from_swapchain() argument
139 return lvp_image_create(device, &local_create_info, pAllocator, in lvp_image_from_swapchain()
144 lvp_CreateImage(VkDevice device, in lvp_CreateImage() argument
345 lvp_GetBufferDeviceAddress( VkDevice device, const VkBufferDeviceAddressInfo* pInfo) lvp_GetBufferDeviceAddress() argument
354 lvp_GetBufferOpaqueCaptureAddress( VkDevice device, const VkBufferDeviceAddressInfo* pInfo) lvp_GetBufferOpaqueCaptureAddress() argument
361 lvp_GetDeviceMemoryOpaqueCaptureAddress( VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo) lvp_GetDeviceMemoryOpaqueCaptureAddress() argument
[all...]
/drivers/hdf_core/adapter/platform/watchdog/
H A Dwatchdog_stm32f4xx.c63 #define WATCHDOG_FIND_CONFIG(node, name, device) \
66 device->watchdogId = HCS_PROP(node, id); \
67 device->timeout = HCS_PROP(node, timeout); \
73 static uint32_t GetWatchdogDeviceInfoResource(WatchdogDeviceInfo *device, const char *deviceMatchAttr) in GetWatchdogDeviceInfoResource() argument
76 if (device == NULL || deviceMatchAttr == NULL) { in GetWatchdogDeviceInfoResource()
77 HDF_LOGE("device or deviceMatchAttr is NULL\r\n"); in GetWatchdogDeviceInfoResource()
81 HCS_FOREACH_CHILD_VARGS(PLATFORM_WATCHDOG_CONFIG, WATCHDOG_FIND_CONFIG, deviceMatchAttr, device); in GetWatchdogDeviceInfoResource()
91 static uint32_t GetWatchdogDeviceInfoResource(WatchdogDeviceInfo *device, const struct DeviceResourceNode *resourceNode) in GetWatchdogDeviceInfoResource() argument
94 if (device == NULL || resourceNode == NULL) { in GetWatchdogDeviceInfoResource()
95 HDF_LOGE("resource or device i in GetWatchdogDeviceInfoResource()
121 AttachWatchdogDeviceInfo(struct WatchdogCntlr *watchdogCntlr, struct HdfDeviceObject *device) global() argument
175 WatchdogDriverBind(struct HdfDeviceObject *device) global() argument
197 WatchdogDriverInit(struct HdfDeviceObject *device) global() argument
228 WatchdogDriverRelease(struct HdfDeviceObject *device) global() argument
[all...]
/drivers/hdf_core/adapter/khdf/linux/platform/adc/
H A Dadc_iio_adapter.c35 struct AdcDevice device; member
53 static int32_t AdcIioRead(struct AdcDevice *device, uint32_t channel, uint32_t *val) in AdcIioRead() argument
60 if (device == NULL) { in AdcIioRead()
61 HDF_LOGE("AdcIioRead: device is null!"); in AdcIioRead()
68 adcDevice = (struct AdcIioDevice *)device; in AdcIioRead()
82 static int32_t AdcIioStop(struct AdcDevice *device) in AdcIioStop() argument
88 if (device == NULL) { in AdcIioStop()
89 HDF_LOGE("AdcIioStop: device is null!"); in AdcIioStop()
92 adcDevice = (struct AdcIioDevice *)device; in AdcIioStop()
107 static int32_t AdcIioStart(struct AdcDevice *device) in AdcIioStart() argument
198 AdcIioParseAndDeviceAdd(struct HdfDeviceObject *device, struct DeviceResourceNode *node) AdcIioParseAndDeviceAdd() argument
228 LinuxAdcInit(struct HdfDeviceObject *device) LinuxAdcInit() argument
253 struct AdcDevice *device = NULL; AdcIioRemoveByNode() local
280 LinuxAdcRelease(struct HdfDeviceObject *device) LinuxAdcRelease() argument
[all...]
/third_party/libinput/test/
H A Dtest-device.c39 struct libinput_device *device; in START_TEST() local
42 device = dev->libinput_device; in START_TEST()
44 modes = libinput_device_config_send_events_get_modes(device); in START_TEST()
53 struct libinput_device *device; in START_TEST() local
56 device = dev->libinput_device; in START_TEST()
58 status = libinput_device_config_send_events_set_mode(device, in START_TEST()
67 struct libinput_device *device; in START_TEST() local
78 device = dev->libinput_device; in START_TEST()
80 modes = libinput_device_config_send_events_get_modes(device); in START_TEST()
88 struct libinput_device *device; in START_TEST() local
115 struct libinput_device *device; START_TEST() local
134 struct libinput_device *device; START_TEST() local
186 struct libinput_device *device; START_TEST() local
226 struct libinput_device *device; START_TEST() local
258 struct libinput_device *device; START_TEST() local
290 struct libinput_device *device; START_TEST() local
337 struct libinput_device *device; START_TEST() local
372 struct libinput_device *device; START_TEST() local
395 struct libinput_device *device; START_TEST() local
465 struct libinput_device *device; START_TEST() local
499 struct libinput_device *device; START_TEST() local
533 struct libinput_device *device; START_TEST() local
567 struct libinput_device *device; START_TEST() local
612 struct libinput_device *device; START_TEST() local
651 struct libinput_device *device; START_TEST() local
696 struct libinput_device *device; START_TEST() local
791 struct libinput_device *device = dev->libinput_device; START_TEST() local
827 struct libinput_device *device = dev->libinput_device; START_TEST() local
853 struct libinput_device *device; START_TEST() local
884 struct libinput_device *device; START_TEST() local
907 struct libinput_device *device; START_TEST() local
930 struct libinput_device *device; START_TEST() local
956 struct libinput_device *device; START_TEST() local
982 struct libinput_device *device; assert_device_ignored() local
1101 struct libinput_device *device; START_TEST() local
1133 struct libinput_device *device = dev->libinput_device; START_TEST() local
1144 struct libinput_device *device; START_TEST() local
1171 struct libinput_device *device = dev->libinput_device; START_TEST() local
1188 struct libinput_device *device; START_TEST() local
1221 struct libinput_device *device; START_TEST() local
1261 struct libinput_device *device; START_TEST() local
1302 struct libinput_device *device; START_TEST() local
1386 struct libinput_device *device = dev->libinput_device; START_TEST() local
1474 struct libinput_device *device; START_TEST() local
1561 struct libinput_device *device = dev->libinput_device; START_TEST() local
1585 struct libinput_device *device = dev->libinput_device; START_TEST() local
1598 struct libinput_device *device; START_TEST() local
1619 struct libinput_device *device = dev->libinput_device; START_TEST() local
1635 struct libinput_device *device = dev->libinput_device; START_TEST() local
1649 struct libinput_device *device = dev->libinput_device; START_TEST() local
1660 struct libinput_device *device = dev->libinput_device; START_TEST() local
1671 struct libinput_device *device = dev->libinput_device; START_TEST() local
[all...]
H A Dtest-trackball.c38 struct libinput_device *device = dev->libinput_device; in START_TEST() local
41 ck_assert(libinput_device_config_rotation_is_available(device)); in START_TEST()
43 angle = libinput_device_config_rotation_get_angle(device); in START_TEST()
45 angle = libinput_device_config_rotation_get_default_angle(device); in START_TEST()
53 struct libinput_device *device = dev->libinput_device; in START_TEST() local
56 status = libinput_device_config_rotation_set_angle(device, 360); in START_TEST()
58 status = libinput_device_config_rotation_set_angle(device, 361); in START_TEST()
60 status = libinput_device_config_rotation_set_angle(device, -1); in START_TEST()
68 struct libinput_device *device = dev->libinput_device; in START_TEST() local
72 ck_assert(!libinput_device_config_rotation_is_available(device)); in START_TEST()
94 struct libinput_device *device = dev->libinput_device; START_TEST() local
111 struct libinput_device *device = dev->libinput_device; START_TEST() local
129 struct libinput_device *device = dev->libinput_device; START_TEST() local
179 struct libinput_device *device = dev->libinput_device; START_TEST() local
229 struct libinput_device *device = dev->libinput_device; START_TEST() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiExternalMemoryTests.cpp92 vk::VkDevice device, in getMemoryDedicatedRequirements()
115 vkd.getBufferMemoryRequirements2(device, &requirementInfo, &requirements); in getMemoryDedicatedRequirements()
121 vk::VkDevice device, in getMemoryDedicatedRequirements()
144 vkd.getImageMemoryRequirements2(device, &requirementInfo, &requirements); in getMemoryDedicatedRequirements()
150 vk::VkDevice device, in writeHostMemory()
155 void* const ptr = vk::mapMemory(vkd, device, memory, 0, size, 0); in writeHostMemory()
159 flushMappedMemoryRange(vkd, device, memory, 0, VK_WHOLE_SIZE); in writeHostMemory()
161 vkd.unmapMemory(device, memory); in writeHostMemory()
165 vk::VkDevice device, in checkHostMemory()
170 void* const ptr = vk::mapMemory(vkd, device, memor in checkHostMemory()
91 getMemoryDedicatedRequirements(const vk::DeviceInterface& vkd, vk::VkDevice device, vk::VkBuffer buffer) getMemoryDedicatedRequirements() argument
120 getMemoryDedicatedRequirements(const vk::DeviceInterface& vkd, vk::VkDevice device, vk::VkImage image) getMemoryDedicatedRequirements() argument
149 writeHostMemory(const vk::DeviceInterface& vkd, vk::VkDevice device, vk::VkDeviceMemory memory, size_t size, const void* data) writeHostMemory() argument
164 checkHostMemory(const vk::DeviceInterface& vkd, vk::VkDevice device, vk::VkDeviceMemory memory, size_t size, const void* data) checkHostMemory() argument
193 chooseQueueFamilyIndex(const vk::InstanceInterface& vki, vk::VkPhysicalDevice device, vk::VkQueueFlags requireFlags) chooseQueueFamilyIndex() argument
418 getQueue(const vk::DeviceInterface& vkd, vk::VkDevice device, deUint32 queueFamilyIndex) getQueue() argument
438 checkSemaphoreSupport(const vk::InstanceInterface& vki, vk::VkPhysicalDevice device, vk::VkExternalSemaphoreHandleTypeFlagBits externalType) checkSemaphoreSupport() argument
466 checkFenceSupport(const vk::InstanceInterface& vki, vk::VkPhysicalDevice device, vk::VkExternalFenceHandleTypeFlagBits externalType) checkFenceSupport() argument
494 checkBufferSupport(const vk::InstanceInterface& vki, vk::VkPhysicalDevice device, vk::VkExternalMemoryHandleTypeFlagBits externalType, vk::VkBufferViewCreateFlags createFlag, vk::VkBufferUsageFlags usageFlag, bool dedicated) checkBufferSupport() argument
530 checkImageSupport(const vk::InstanceInterface& vki, vk::VkPhysicalDevice device, vk::VkExternalMemoryHandleTypeFlagBits externalType, vk::VkImageViewCreateFlags createFlag, vk::VkImageUsageFlags usageFlag, vk::VkFormat format, vk::VkImageTiling tiling, bool dedicated) checkImageSupport() argument
610 tuneWorkSizeYAndPrepareCommandBuffer( const Context& context, const vk::DeviceInterface& vk, vk::VkDevice device, vk::VkQueue queue, vk::VkCommandBuffer cmdBuffer, vk::VkDescriptorSet descriptorSet, vk::VkPipelineLayout pipelineLayout, vk::VkPipeline computePipeline, vk::VkBufferMemoryBarrier computeFinishBarrier, vk::VkEvent event, tcu::UVec3* maxWorkSize) tuneWorkSizeYAndPrepareCommandBuffer() argument
715 submitAtomicCalculationsAndGetSemaphoreNative(const Context& context, const vk::DeviceInterface& vk, vk::VkDevice device, vk::Allocator& alloc, vk::VkQueue queue, deUint32 queueFamilyIndex, vk::VkSemaphore semaphore, vk::VkExternalSemaphoreHandleTypeFlagBits externalType, NativeHandle& nativeHandle) submitAtomicCalculationsAndGetSemaphoreNative() argument
851 submitAtomicCalculationsAndGetFenceNative(const Context& context, const vk::DeviceInterface& vk, vk::VkDevice device, vk::Allocator& alloc, vk::VkQueue queue, deUint32 queueFamilyIndex, vk::VkFence fence, vk::VkExternalFenceHandleTypeFlagBits externalType, NativeHandle& nativeHandle, bool expectFenceUnsignaled = true) submitAtomicCalculationsAndGetFenceNative() argument
3094 vk::Move<vk::VkDevice> device; testBufferQueries() local
3970 vk::Move<vk::VkDevice> device; testImageQueries() local
4342 ValidateAHardwareBuffer(TestLog& log, vk::VkFormat format, deUint64 requiredAhbUsage, const vk::DeviceDriver& vkd, const vk::VkDevice& device, vk::VkImageUsageFlags usageFlag, vk::VkImageCreateFlags createFlag, deUint32 layerCount, bool& enableMaxLayerTest) ValidateAHardwareBuffer() argument
[all...]
/third_party/backends/frontend/
H A Dtstbackend.c45 {"device-name", required_argument, NULL, 'd'},
54 test_options (SANE_Device * device, int can_do_recursive);
212 test_parameters (SANE_Device * device, SANE_Parameters *params) in test_parameters() argument
217 status = sane_get_parameters (device, &p); in test_parameters()
244 test_options_word_list (SANE_Device * device, int option_num, in test_options_word_list() argument
264 status = sane_control_option (device, option_num, in test_options_word_list()
275 test_options(device, can_do_recursive-1); in test_options_word_list()
278 test_parameters(device, NULL); in test_options_word_list()
291 test_options_string_list (SANE_Device * device, int option_num, in test_options_string_list() argument
315 status = sane_control_option (device, option_nu in test_options_string_list()
343 test_options(SANE_Device * device, int can_do_recursive) test_options() argument
860 get_optdesc_by_name(SANE_Handle device, const char *name, int *option_num) get_optdesc_by_name() argument
887 set_min_value(SANE_Handle device, int option_num, const SANE_Option_Descriptor *opt) set_min_value() argument
938 set_max_value(SANE_Handle device, int option_num, const SANE_Option_Descriptor *opt) set_max_value() argument
990 set_random_value(SANE_Handle device, int option_num, const SANE_Option_Descriptor *opt) set_random_value() argument
1048 get_option_value(SANE_Handle device, const char *option_name) get_option_value() argument
1108 display_scan_parameters(SANE_Handle device) display_scan_parameters() argument
1127 test_scan(SANE_Handle device) test_scan() argument
1478 test_scans(SANE_Device * device) test_scans() argument
1666 test_default(SANE_Device * device) test_default() argument
1688 SANE_Handle device; main() local
[all...]
/drivers/hdf_core/framework/model/audio/hdmi/src/
H A Daudio_hdmi_codec_adapter.c37 static int32_t AudioHdmiCodecDriverBind(struct HdfDeviceObject *device) in AudioHdmiCodecDriverBind() argument
42 if (device == NULL) { in AudioHdmiCodecDriverBind()
52 codecHost->device = device; in AudioHdmiCodecDriverBind()
53 device->service = &codecHost->service; in AudioHdmiCodecDriverBind()
59 static int32_t AudioHdmiCodecDriverInit(struct HdfDeviceObject *device) in AudioHdmiCodecDriverInit() argument
64 if (device == NULL) { in AudioHdmiCodecDriverInit()
65 AUDIO_DRIVER_LOG_ERR("device is NULL."); in AudioHdmiCodecDriverInit()
69 ret = CodecGetConfigInfo(device, &g_audioHdmiCodecData); in AudioHdmiCodecDriverInit()
75 if (CodecDaiGetPortConfigInfo(device, in AudioHdmiCodecDriverInit()
106 AudioHdmiCodecDriverRelease(struct HdfDeviceObject *device) AudioHdmiCodecDriverRelease() argument
[all...]
/third_party/mesa3d/src/vulkan/runtime/
H A Dvk_sync.c81 vk_sync_init(struct vk_device *device, in vk_sync_init() argument
99 return type->init(device, sync, initial_value); in vk_sync_init()
103 vk_sync_finish(struct vk_device *device, in vk_sync_finish() argument
106 sync->type->finish(device, sync); in vk_sync_finish()
110 vk_sync_create(struct vk_device *device, in vk_sync_create() argument
118 sync = vk_alloc(&device->alloc, type->size, 8, in vk_sync_create()
121 return vk_error(device, VK_ERROR_OUT_OF_HOST_MEMORY); in vk_sync_create()
123 VkResult result = vk_sync_init(device, sync, type, flags, initial_value); in vk_sync_create()
125 vk_free(&device->alloc, sync); in vk_sync_create()
135 vk_sync_destroy(struct vk_device *device, in vk_sync_destroy() argument
143 vk_sync_signal(struct vk_device *device, struct vk_sync *sync, uint64_t value) vk_sync_signal() argument
158 vk_sync_get_value(struct vk_device *device, struct vk_sync *sync, uint64_t *value) vk_sync_get_value() argument
167 vk_sync_reset(struct vk_device *device, struct vk_sync *sync) vk_sync_reset() argument
175 vk_sync_move(struct vk_device *device, struct vk_sync *dst, struct vk_sync *src) vk_sync_move() argument
214 __vk_sync_wait(struct vk_device *device, struct vk_sync *sync, uint64_t wait_value, enum vk_sync_wait_flags wait_flags, uint64_t abs_timeout_ns) __vk_sync_wait() argument
240 vk_sync_wait(struct vk_device *device, struct vk_sync *sync, uint64_t wait_value, enum vk_sync_wait_flags wait_flags, uint64_t abs_timeout_ns) vk_sync_wait() argument
282 __vk_sync_wait_many(struct vk_device *device, uint32_t wait_count, const struct vk_sync_wait *waits, enum vk_sync_wait_flags wait_flags, uint64_t abs_timeout_ns) __vk_sync_wait_many() argument
328 vk_sync_wait_many(struct vk_device *device, uint32_t wait_count, const struct vk_sync_wait *waits, enum vk_sync_wait_flags wait_flags, uint64_t abs_timeout_ns) vk_sync_wait_many() argument
349 vk_sync_import_opaque_fd(struct vk_device *device, struct vk_sync *sync, int fd) vk_sync_import_opaque_fd() argument
364 vk_sync_export_opaque_fd(struct vk_device *device, struct vk_sync *sync, int *fd) vk_sync_export_opaque_fd() argument
380 vk_sync_import_sync_file(struct vk_device *device, struct vk_sync *sync, int sync_file) vk_sync_import_sync_file() argument
396 vk_sync_export_sync_file(struct vk_device *device, struct vk_sync *sync, int *sync_file) vk_sync_export_sync_file() argument
[all...]
/third_party/mesa3d/include/android_stub/hardware/
H A Dgralloc1.h36 * allocate may be NULL, which instructs the device to report whether the
82 * dequeued buffer before. May be ignored by the gralloc device. */
277 * gralloc1_capability_t above) supported by this device. This list must not
278 * change after the device has been loaded.
285 * outCapabilities - a list of capabilities supported by this device; may
290 void (*getCapabilities)(struct gralloc1_device* device, uint32_t* outCount,
301 * or NULL if the described function is not supported by this device.
303 gralloc1_function_pointer_t (*getFunction)(struct gralloc1_device* device,
308 gralloc1_device_t** device) { in gralloc1_open()
310 TO_HW_DEVICE_T_OPEN(device)); in gralloc1_open()
307 gralloc1_open(const struct hw_module_t* module, gralloc1_device_t** device) gralloc1_open() argument
313 gralloc1_close(gralloc1_device_t* device) gralloc1_close() argument
[all...]

Completed in 25 milliseconds

12345678910>>...133