Lines Matching defs:fences
36 * Their primary use-case is to implement Vulkan fences and semaphores.
111 * host-side wait on all of the syncobj fences simultaneously.
113 * all of the syncobj fences to be signaled before it returns.
131 * of syncobj fences at the given points simultaneously.
162 * Vulkan fences and semaphores.
174 * will not affect any sync files whose fences have been imported into the
939 struct dma_fence *tmp, **fences;
950 fences = kmalloc_array(count, sizeof(*fences), GFP_KERNEL);
951 if (!fences)
956 fences[count++] = dma_fence_get(tmp);
958 array = dma_fence_array_create(count, fences,
970 dma_fence_put(fences[count]);
972 kfree(fences);