Home
last modified time | relevance | path

Searched refs:writeset (Results 1 - 8 of 8) sorted by relevance

/third_party/mesa3d/src/amd/vulkan/
H A Dradv_descriptor_set.c1084 const VkWriteDescriptorSet *writeset) in write_block_descriptor()
1087 vk_find_struct_const(writeset->pNext, WRITE_DESCRIPTOR_SET_INLINE_UNIFORM_BLOCK); in write_block_descriptor()
1204 const VkWriteDescriptorSet *writeset = &pDescriptorWrites[i]; in radv_update_descriptor_sets_impl() local
1206 dstSetOverride ? dstSetOverride : writeset->dstSet); in radv_update_descriptor_sets_impl()
1208 set->header.layout->binding + writeset->dstBinding; in radv_update_descriptor_sets_impl()
1223 if (writeset->descriptorType == VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK) { in radv_update_descriptor_sets_impl()
1224 write_block_descriptor(device, cmd_buffer, (uint8_t *)ptr + writeset->dstArrayElement, in radv_update_descriptor_sets_impl()
1225 writeset); in radv_update_descriptor_sets_impl()
1227 } else if (writeset->descriptorType == VK_DESCRIPTOR_TYPE_ACCELERATION_STRUCTURE_KHR) { in radv_update_descriptor_sets_impl()
1229 vk_find_struct_const(writeset in radv_update_descriptor_sets_impl()
1083 write_block_descriptor(struct radv_device *device, struct radv_cmd_buffer *cmd_buffer, void *dst, const VkWriteDescriptorSet *writeset) write_block_descriptor() argument
[all...]
H A Dradv_cmd_buffer.c5377 ASSERTED const VkWriteDescriptorSet *writeset = &pDescriptorWrites[i]; in radv_CmdPushDescriptorSetKHR() local
5378 assert(writeset->descriptorType != VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK); in radv_CmdPushDescriptorSetKHR()
/third_party/mesa3d/src/broadcom/vulkan/
H A Dv3dv_descriptor_set.c1103 const VkWriteDescriptorSet *writeset = &pDescriptorWrites[i]; in v3dv_UpdateDescriptorSets() local
1104 V3DV_FROM_HANDLE(v3dv_descriptor_set, set, writeset->dstSet); in v3dv_UpdateDescriptorSets()
1107 set->layout->binding + writeset->dstBinding; in v3dv_UpdateDescriptorSets()
1118 if (writeset->descriptorType != VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK) { in v3dv_UpdateDescriptorSets()
1119 descriptor += writeset->dstArrayElement; in v3dv_UpdateDescriptorSets()
1120 descriptor_count = writeset->descriptorCount; in v3dv_UpdateDescriptorSets()
1126 switch(writeset->descriptorType) { in v3dv_UpdateDescriptorSets()
1132 const VkDescriptorBufferInfo *buffer_info = writeset->pBufferInfo + j; in v3dv_UpdateDescriptorSets()
1133 write_buffer_descriptor(descriptor, writeset->descriptorType, in v3dv_UpdateDescriptorSets()
1142 const VkDescriptorImageInfo *image_info = writeset in v3dv_UpdateDescriptorSets()
[all...]
/third_party/mesa3d/src/freedreno/vulkan/
H A Dtu_descriptor_set.c1010 const VkWriteDescriptorSet *writeset = &pDescriptorWrites[i]; in tu_update_descriptor_sets() local
1011 TU_FROM_HANDLE(tu_descriptor_set, set, dstSetOverride ?: writeset->dstSet); in tu_update_descriptor_sets()
1013 set->layout->binding + writeset->dstBinding; in tu_update_descriptor_sets()
1015 if (writeset->descriptorType == VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC || in tu_update_descriptor_sets()
1016 writeset->descriptorType == VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC) { in tu_update_descriptor_sets()
1030 ptr += (binding_layout->size / 4) * writeset->dstArrayElement; in tu_update_descriptor_sets()
1031 for (j = 0; j < writeset->descriptorCount; ++j) { in tu_update_descriptor_sets()
1032 switch(writeset->descriptorType) { in tu_update_descriptor_sets()
1035 write_ubo_descriptor(ptr, writeset->pBufferInfo + j); in tu_update_descriptor_sets()
1039 write_buffer_descriptor(device, ptr, writeset in tu_update_descriptor_sets()
[all...]
/third_party/lwip/src/include/lwip/priv/
H A Dsockets_priv.h155 /** writeset passed to select */
156 fd_set *writeset; member
/third_party/lwip/src/api/
H A Dsockets.c1891 * Go through the readset and writeset lists and see which socket of the sockets
1892 * set in the sets has events. On return, readset, writeset and exceptset have
2029 #define lwip_select_inc_sockets_used(maxfdp1, readset, writeset, exceptset, used_sockets)
2034 lwip_select(int maxfdp1, fd_set *readset, fd_set *writeset, fd_set *exceptset, in lwip_select() argument
2052 maxfdp1, (void *)readset, (void *) writeset, (void *) exceptset, in lwip_select()
2061 lwip_select_inc_sockets_used(maxfdp1, readset, writeset, exceptset, &used_sockets); in lwip_select()
2065 nready = lwip_selscan(maxfdp1, readset, writeset, exceptset, &lreadset, &lwriteset, &lexceptset); in lwip_select()
2092 API_SELECT_CB_VAR_REF(select_cb).writeset = writeset; in lwip_select()
2112 (writeset in lwip_select()
[all...]
/third_party/lwip/test/unit/api/
H A Dtest_sockets.c658 fd_set writeset; in START_TEST() local
670 FD_ZERO(&writeset); in START_TEST()
671 FD_SET(s, &writeset); in START_TEST()
676 ret = lwip_select(s + 1, &readset, &writeset, &errset, &tv); in START_TEST()
/third_party/lwip/src/include/lwip/
H A Dsockets.h600 int lwip_select(int maxfdp1, fd_set *readset, fd_set *writeset, fd_set *exceptset,
668 #define select(maxfdp1,readset,writeset,exceptset,timeout) lwip_select(maxfdp1,readset,writeset,exceptset,timeout)

Completed in 26 milliseconds