Lines Matching refs:syncobjs
1230 uint32_t *syncobjs = vk_alloc(&device->alloc, in v3dv_ResetFences() local
1231 sizeof(*syncobjs) * fenceCount, 8, in v3dv_ResetFences()
1233 if (!syncobjs) in v3dv_ResetFences()
1238 syncobjs[i] = fence->sync; in v3dv_ResetFences()
1241 int ret = drmSyncobjReset(device->render_fd, syncobjs, fenceCount); in v3dv_ResetFences()
1243 vk_free(&device->alloc, syncobjs); in v3dv_ResetFences()
1261 uint32_t *syncobjs = vk_alloc(&device->alloc, in v3dv_WaitForFences() local
1262 sizeof(*syncobjs) * fenceCount, 8, in v3dv_WaitForFences()
1264 if (!syncobjs) in v3dv_WaitForFences()
1269 syncobjs[i] = fence->sync; in v3dv_WaitForFences()
1278 ret = drmSyncobjWait(device->render_fd, syncobjs, fenceCount, in v3dv_WaitForFences()
1282 vk_free(&device->alloc, syncobjs); in v3dv_WaitForFences()