HomeSort by relevance Sort by last modified time
    Searched refs:writeset (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/amd/vulkan/
radv_descriptor_set.c 662 const VkWriteDescriptorSet *writeset = &pDescriptorWrites[i]; local
663 RADV_FROM_HANDLE(radv_descriptor_set, set, writeset->dstSet);
665 set->layout->binding + writeset->dstBinding;
670 ptr += binding_layout->size * writeset->dstArrayElement / 4;
672 buffer_list += binding_layout->buffer_count * writeset->dstArrayElement;
673 for (j = 0; j < writeset->descriptorCount; ++j) {
674 switch(writeset->descriptorType) {
677 unsigned idx = writeset->dstArrayElement + j;
680 buffer_list, writeset->pBufferInfo + j);
686 writeset->pBufferInfo + j)
    [all...]
  /external/syslinux/core/lwip/src/api/
sockets.c 93 /** writeset passed to select */
94 fd_set *writeset; member in struct:lwip_select_cb
997 * Go through the readset and writeset lists and see which socket of the sockets
998 * set in the sets has events. On return, readset, writeset and exceptset have
    [all...]
  /bionic/libc/dns/resolv/
res_send.c 161 static int retrying_select(const int sock, fd_set *readset, fd_set *writeset,
1020 retrying_select(const int sock, fd_set *readset, fd_set *writeset, const struct timespec *finish)
1037 if (writeset) {
1038 FD_ZERO(writeset);
1039 FD_SET(sock, writeset);
1046 n = pselect(sock + 1, readset, writeset, NULL, &timeout, NULL);
1064 if ((readset && FD_ISSET(sock, readset)) || (writeset && FD_ISSET(sock, writeset))) {
    [all...]
  /external/syslinux/core/lwip/src/include/lwip/
sockets.h 338 int lwip_select(int maxfdp1, fd_set *readset, fd_set *writeset, fd_set *exceptset,

Completed in 120 milliseconds