Lines Matching defs:temp
71 } temp;
143 alloc_size += sizeof(*submit->temp.semaphores) *
148 submit->temp.storage = NULL;
152 submit->temp.storage = vk_alloc(alloc, alloc_size, VN_DEFAULT_ALIGN,
154 if (!submit->temp.storage)
157 submit->temp.batches = submit->temp.storage;
158 submit->temp.semaphores = submit->temp.storage + semaphores_offset;
179 u.submit_batch = &submit->temp.submit_batches[batch_index];
184 u.bind_sparse_batch = &submit->temp.bind_sparse_batches[batch_index];
193 VkSemaphore *dst_sems = &submit->temp.semaphores[sem_base];
226 if (!submit->temp.storage)
233 memcpy(submit->temp.submit_batches, submit->submit_batches,
235 submit->submit_batches = submit->temp.submit_batches;
238 memcpy(submit->temp.bind_sparse_batches, submit->bind_sparse_batches,
240 submit->bind_sparse_batches = submit->temp.bind_sparse_batches;
312 vk_free(alloc, submit->temp.storage);
523 struct vn_sync_payload *temp = &fence->temporary;
525 vn_sync_payload_release(dev, temp);
526 temp->type = VN_SYNC_TYPE_WSI_SIGNALED;
527 fence->payload = temp;
966 struct vn_sync_payload *temp = &sem->temporary;
968 vn_sync_payload_release(dev, temp);
969 temp->type = VN_SYNC_TYPE_WSI_SIGNALED;
970 sem->payload = temp;