Home
last modified time | relevance | path

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

/external/mesa3d/src/broadcom/vulkan/
Dv3dv_descriptor_set.c981 const VkWriteDescriptorSet *writeset = &pDescriptorWrites[i]; in v3dv_UpdateDescriptorSets() local
982 V3DV_FROM_HANDLE(v3dv_descriptor_set, set, writeset->dstSet); in v3dv_UpdateDescriptorSets()
985 set->layout->binding + writeset->dstBinding; in v3dv_UpdateDescriptorSets()
990 descriptor += writeset->dstArrayElement; in v3dv_UpdateDescriptorSets()
992 for (uint32_t j = 0; j < writeset->descriptorCount; ++j) { in v3dv_UpdateDescriptorSets()
993 descriptor->type = writeset->descriptorType; in v3dv_UpdateDescriptorSets()
995 switch(writeset->descriptorType) { in v3dv_UpdateDescriptorSets()
1001 const VkDescriptorBufferInfo *buffer_info = writeset->pBufferInfo + j; in v3dv_UpdateDescriptorSets()
1019 const VkDescriptorImageInfo *image_info = writeset->pImageInfo + j; in v3dv_UpdateDescriptorSets()
1024 write_image_descriptor(writeset->descriptorType, in v3dv_UpdateDescriptorSets()
[all …]
/external/mesa3d/src/freedreno/vulkan/
Dtu_descriptor_set.c820 const VkWriteDescriptorSet *writeset = &pDescriptorWrites[i]; in tu_update_descriptor_sets() local
821 TU_FROM_HANDLE(tu_descriptor_set, set, dstSetOverride ?: writeset->dstSet); in tu_update_descriptor_sets()
823 set->layout->binding + writeset->dstBinding; in tu_update_descriptor_sets()
833 ptr += (binding_layout->size / 4) * writeset->dstArrayElement; in tu_update_descriptor_sets()
834 for (j = 0; j < writeset->descriptorCount; ++j) { in tu_update_descriptor_sets()
835 switch(writeset->descriptorType) { in tu_update_descriptor_sets()
838 unsigned idx = writeset->dstArrayElement + j; in tu_update_descriptor_sets()
841 writeset->pBufferInfo + j); in tu_update_descriptor_sets()
845 write_ubo_descriptor(ptr, writeset->pBufferInfo + j); in tu_update_descriptor_sets()
849 unsigned idx = writeset->dstArrayElement + j; in tu_update_descriptor_sets()
[all …]
/external/mesa3d/src/amd/vulkan/
Dradv_descriptor_set.c946 const VkWriteDescriptorSet *writeset) in write_block_descriptor() argument
949 vk_find_struct_const(writeset->pNext, WRITE_DESCRIPTOR_SET_INLINE_UNIFORM_BLOCK_EXT); in write_block_descriptor()
1058 const VkWriteDescriptorSet *writeset = &pDescriptorWrites[i]; in radv_update_descriptor_sets() local
1060 dstSetOverride ? dstSetOverride : writeset->dstSet); in radv_update_descriptor_sets()
1062 set->layout->binding + writeset->dstBinding; in radv_update_descriptor_sets()
1075 if (writeset->descriptorType == VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT) { in radv_update_descriptor_sets()
1076 write_block_descriptor(device, cmd_buffer, (uint8_t*)ptr + writeset->dstArrayElement, writeset); in radv_update_descriptor_sets()
1080 ptr += binding_layout->size * writeset->dstArrayElement / 4; in radv_update_descriptor_sets()
1082 buffer_list += writeset->dstArrayElement; in radv_update_descriptor_sets()
1083 for (j = 0; j < writeset->descriptorCount; ++j) { in radv_update_descriptor_sets()
[all …]
Dradv_cmd_buffer.c4088 ASSERTED const VkWriteDescriptorSet *writeset = &pDescriptorWrites[i]; in radv_CmdPushDescriptorSetKHR() local
4089 assert(writeset->descriptorType != VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT); in radv_CmdPushDescriptorSetKHR()
/external/openssh/
Dchannels.c103 fd_set *readset, fd_set *writeset);
1067 fd_set *readset, fd_set *writeset) in channel_pre_listener() argument
1074 fd_set *readset, fd_set *writeset) in channel_pre_connecting() argument
1077 FD_SET(c->sock, writeset); in channel_pre_connecting()
1082 fd_set *readset, fd_set *writeset) in channel_pre_open() argument
1092 FD_SET(c->wfd, writeset); in channel_pre_open()
1107 FD_SET(c->efd, writeset); in channel_pre_open()
1195 fd_set *readset, fd_set *writeset) in channel_pre_x11_open() argument
1203 channel_pre_open(ssh, c, readset, writeset); in channel_pre_x11_open()
1219 Channel *c, fd_set *readset, fd_set *writeset) in channel_pre_mux_client() argument
[all …]
Dserverloop.c356 process_output(struct ssh *ssh, fd_set *writeset, int connection_out) in process_output() argument
361 if (FD_ISSET(connection_out, writeset)) { in process_output()
400 fd_set *readset = NULL, *writeset = NULL; in server_loop2() local
440 &readset, &writeset, &max_fd, &nalloc, rekey_timeout_ms); in server_loop2()
450 channel_after_select(ssh, readset, writeset); in server_loop2()
453 process_output(ssh, writeset, connection_out); in server_loop2()
458 free(writeset); in server_loop2()
Dclientloop.c1230 fd_set *readset = NULL, *writeset = NULL; in client_loop() local
1357 client_wait_until_can_do_something(ssh, &readset, &writeset, in client_loop()
1365 channel_after_select(ssh, readset, writeset); in client_loop()
1377 if (FD_ISSET(connection_out, writeset)) { in client_loop()
1397 free(writeset); in client_loop()