Home
last modified time | relevance | path

Searched refs:sync_type (Results 1 – 19 of 19) sorted by relevance

/external/mesa3d/src/vulkan/runtime/
Dvk_fence.c112 const struct vk_sync_type *sync_type = in vk_fence_create() local
114 if (sync_type == NULL) { in vk_fence_create()
126 size_t size = offsetof(struct vk_fence, permanent) + sync_type->size; in vk_fence_create()
137 sync_type, sync_flags, signaled); in vk_fence_create()
307 const struct vk_sync_type *sync_type = in vk_common_GetPhysicalDeviceExternalFenceProperties() local
309 if (sync_type == NULL) { in vk_common_GetPhysicalDeviceExternalFenceProperties()
317 vk_sync_fence_import_types(sync_type); in vk_common_GetPhysicalDeviceExternalFenceProperties()
319 vk_sync_fence_export_types(sync_type); in vk_common_GetPhysicalDeviceExternalFenceProperties()
329 if (sync_type != opaque_sync_type) { in vk_common_GetPhysicalDeviceExternalFenceProperties()
365 const struct vk_sync_type *sync_type = in vk_common_ImportFenceFdKHR() local
[all …]
Dvk_semaphore.c158 const struct vk_sync_type *sync_type = in vk_common_CreateSemaphore() local
160 if (sync_type == NULL) { in vk_common_CreateSemaphore()
175 assert(sync_type->move); in vk_common_CreateSemaphore()
181 size_t size = offsetof(struct vk_semaphore, permanent) + sync_type->size; in vk_common_CreateSemaphore()
196 sync_type, sync_flags, initial_value); in vk_common_CreateSemaphore()
265 const struct vk_sync_type *sync_type = in vk_common_GetPhysicalDeviceExternalSemaphoreProperties() local
267 if (sync_type == NULL) { in vk_common_GetPhysicalDeviceExternalSemaphoreProperties()
275 vk_sync_semaphore_import_types(sync_type, semaphore_type); in vk_common_GetPhysicalDeviceExternalSemaphoreProperties()
277 vk_sync_semaphore_export_types(sync_type, semaphore_type); in vk_common_GetPhysicalDeviceExternalSemaphoreProperties()
292 if (sync_type != opaque_sync_type) { in vk_common_GetPhysicalDeviceExternalSemaphoreProperties()
[all …]
Dvk_queue.c1572 const struct vk_sync_type *sync_type = in vk_common_QueueWaitIdle() local
1576 result = vk_sync_create(queue->base.device, sync_type, 0, 0, &sync); in vk_common_QueueWaitIdle()
/external/sandboxed-api/sandboxed_api/
Dvar_ptr.h38 explicit Ptr(Var* value, SyncType sync_type) : sync_type_(sync_type) { in Ptr() argument
63 void SetSyncType(SyncType sync_type) { sync_type_ = sync_type; } in SetSyncType() argument
/external/rust/android-crates-io/crates/rusb/src/
Dendpoint_descriptor.rs54 pub fn sync_type(&self) -> SyncType { in sync_type() method
219 super::from_libusb(&endpoint_descriptor!(bmAttributes: 0b0000_0001)).sync_type() in it_interprets_synchronization_type_in_attributes()
223 super::from_libusb(&endpoint_descriptor!(bmAttributes: 0b0000_0101)).sync_type() in it_interprets_synchronization_type_in_attributes()
227 super::from_libusb(&endpoint_descriptor!(bmAttributes: 0b0000_1001)).sync_type() in it_interprets_synchronization_type_in_attributes()
231 super::from_libusb(&endpoint_descriptor!(bmAttributes: 0b0000_1101)).sync_type() in it_interprets_synchronization_type_in_attributes()
/external/mesa3d/src/vulkan/wsi/
Dwsi_common_drm.c202 const struct vk_sync_type *sync_type = in wsi_create_sync_for_dma_buf_wait() local
204 if (sync_type == NULL) in wsi_create_sync_for_dma_buf_wait()
213 result = vk_sync_create(device, sync_type, VK_SYNC_IS_SHAREABLE, 0, &sync); in wsi_create_sync_for_dma_buf_wait()
319 const struct vk_sync_type *sync_type = in wsi_create_sync_imm() local
324 result = vk_sync_create(device, sync_type, VK_SYNC_IS_SHAREABLE, 0, &sync); in wsi_create_sync_imm()
348 const struct vk_sync_type *sync_type = in wsi_create_sync_for_image_syncobj() local
355 if (sync_type == NULL) in wsi_create_sync_for_image_syncobj()
389 result = vk_sync_create(device, sync_type, VK_SYNC_IS_SHAREABLE, 0, &sync); in wsi_create_sync_for_image_syncobj()
/external/mesa3d/src/nouveau/vulkan/
Dnvk_upload_queue.c77 const struct vk_sync_type *sync_type = pdev->nvkmd->sync_types[0]; in nvk_upload_queue_init() local
78 assert(sync_type->features & VK_SYNC_FEATURE_TIMELINE); in nvk_upload_queue_init()
80 result = vk_sync_create(&dev->vk, sync_type, VK_SYNC_IS_TIMELINE, in nvk_upload_queue_init()
/external/mesa3d/src/gallium/drivers/asahi/
Dagx_batch.c726 .sync_type = DRM_ASAHI_SYNC_SYNCOBJ, in agx_add_sync()
803 .sync_type = DRM_ASAHI_SYNC_SYNCOBJ, in agx_batch_submit()
807 .sync_type = DRM_ASAHI_SYNC_TIMELINE_SYNCOBJ, in agx_batch_submit()
915 .sync_type = DRM_ASAHI_SYNC_TIMELINE_SYNCOBJ, in agx_batch_submit()
/external/mesa3d/src/asahi/vulkan/
Dhk_queue.c295 sync->sync_type = DRM_ASAHI_SYNC_TIMELINE_SYNCOBJ; in asahi_fill_sync()
298 sync->sync_type = DRM_ASAHI_SYNC_SYNCOBJ; in asahi_fill_sync()
491 .sync_type = DRM_ASAHI_SYNC_TIMELINE_SYNCOBJ, in queue_submit()
/external/mesa3d/src/panfrost/vulkan/csf/
Dpanvk_vX_queue.c351 const struct vk_sync_type *sync_type = phys_dev->sync_types[0]; in init_utrace() local
352 assert(sync_type && vk_sync_type_is_drm_syncobj(sync_type) && in init_utrace()
353 (sync_type->features & VK_SYNC_FEATURE_TIMELINE)); in init_utrace()
355 result = vk_sync_create(&dev->vk, sync_type, VK_SYNC_IS_TIMELINE, 0, in init_utrace()
/external/tensorflow/tensorflow/core/profiler/backends/gpu/
Drocm_tracer.cc849 event.synchronization_info.sync_type = in AddSynchronizeEventUponApiExit()
855 event.synchronization_info.sync_type = RocmTracerSyncTypes::StreamWait; in AddSynchronizeEventUponApiExit()
1220 event.synchronization_info.sync_type = in AddHipStreamSynchronizeActivityEvent()
1224 event.synchronization_info.sync_type = RocmTracerSyncTypes::StreamWait; in AddHipStreamSynchronizeActivityEvent()
1227 event.synchronization_info.sync_type = RocmTracerSyncTypes::InvalidSync; in AddHipStreamSynchronizeActivityEvent()
Drocm_tracer.h82 RocmTracerSyncTypes sync_type; member
/external/rust/android-crates-io/crates/rusb/examples/
Dlist_devices.rs253 endpoint_desc.sync_type() in print_endpoint()
/external/mesa3d/src/asahi/lib/
Dunstable_asahi_drm.h381 __u32 sync_type; member
/external/mesa3d/src/nouveau/compiler/nak/
Dfrom_nir.rs349 fn push_crs(&mut self, target: &nir_block, sync_type: SyncType) { in push_crs()
351 self.crs.push((target.index, sync_type)); in push_crs()
356 fn pop_crs(&mut self, target: &nir_block, sync_type: SyncType) { in pop_crs()
359 assert!(top_sync_type == sync_type); in pop_crs()
366 for (i, (index, sync_type)) in self.crs.iter().enumerate().rev() { in peek_crs()
371 match sync_type { in peek_crs()
390 return Some(*sync_type); in peek_crs()
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/libc-0.2.164/src/
Dpsp.rs2778 pub fn sceGeListSync(qid: i32, sync_type: i32) -> GeListState; in sceGeListSync()
2779 pub fn sceGeDrawSync(sync_type: i32) -> GeListState; in sceGeDrawSync()
/external/rust/android-crates-io/crates/libc/src/
Dpsp.rs2778 pub fn sceGeListSync(qid: i32, sync_type: i32) -> GeListState; in sceGeListSync()
2779 pub fn sceGeDrawSync(sync_type: i32) -> GeListState; in sceGeDrawSync()
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/libc-0.2.164/src/
Dpsp.rs2778 pub fn sceGeListSync(qid: i32, sync_type: i32) -> GeListState; in sceGeListSync()
2779 pub fn sceGeDrawSync(sync_type: i32) -> GeListState; in sceGeDrawSync()
/external/libbpf/.github/actions/build-selftests/
Dvmlinux.h33913 int sync_type; member