/third_party/mesa3d/src/vulkan/runtime/ |
D | vk_sync.c | 262 const struct vk_sync_wait *waits, in can_wait_many() argument 265 if (waits[0].sync->type->wait_many == NULL) in can_wait_many() 269 !(waits[0].sync->type->features & VK_SYNC_FEATURE_WAIT_ANY)) in can_wait_many() 273 assert_valid_wait(waits[i].sync, waits[i].wait_value, wait_flags); in can_wait_many() 274 if (waits[i].sync->type != waits[0].sync->type) in can_wait_many() 284 const struct vk_sync_wait *waits, in __vk_sync_wait_many() argument 292 return __vk_sync_wait(device, waits[0].sync, waits[0].wait_value, in __vk_sync_wait_many() 296 if (can_wait_many(wait_count, waits, wait_flags)) { in __vk_sync_wait_many() 297 return waits[0].sync->type->wait_many(device, wait_count, waits, in __vk_sync_wait_many() 305 VkResult result = __vk_sync_wait(device, waits[i].sync, in __vk_sync_wait_many() [all …]
|
D | vk_queue.c | 155 VK_MULTIALLOC_DECL(&ma, struct vk_sync_wait, waits, wait_count); in vk_queue_submit_alloc() 190 submit->waits = waits; in vk_queue_submit_alloc() 301 if ((submit->waits[i].sync->flags & VK_SYNC_IS_TIMELINE) && in vk_queue_submit_final() 302 submit->waits[i].wait_value == 0) in vk_queue_submit_final() 306 if (vk_sync_type_is_dummy(submit->waits[i].sync->type)) { in vk_queue_submit_final() 312 submit->waits[i].sync = NULL; in vk_queue_submit_final() 321 vk_sync_as_timeline(submit->waits[i].sync); in vk_queue_submit_final() 326 submit->waits[i].wait_value, in vk_queue_submit_final() 331 submit->waits[i].wait_value); in vk_queue_submit_final() 338 submit->waits[i].sync = &submit->_wait_points[i]->sync; in vk_queue_submit_final() [all …]
|
D | vk_drm_syncobj.c | 172 const struct vk_sync_wait *waits, in spin_wait_for_sync_file() argument 179 VkResult result = sync_has_sync_file(device, waits[i].sync); in spin_wait_for_sync_file() 192 VkResult result = sync_has_sync_file(device, waits[i].sync); in spin_wait_for_sync_file() 210 const struct vk_sync_wait *waits, in vk_drm_syncobj_wait_many() argument 215 !(waits[0].sync->type->features & VK_SYNC_FEATURE_TIMELINE)) { in vk_drm_syncobj_wait_many() 220 return spin_wait_for_sync_file(device, wait_count, waits, in vk_drm_syncobj_wait_many() 236 if (waits[i].sync->flags & VK_SYNC_IS_TIMELINE) { in vk_drm_syncobj_wait_many() 237 if (waits[i].wait_value == 0) in vk_drm_syncobj_wait_many() 243 handles[j] = to_drm_syncobj(waits[i].sync)->syncobj; in vk_drm_syncobj_wait_many() 244 wait_values[j] = waits[i].wait_value; in vk_drm_syncobj_wait_many()
|
D | vk_sync_binary.c | 90 const struct vk_sync_wait *waits, in vk_sync_binary_wait_many() argument 97 struct vk_sync_binary *binary = to_vk_sync_binary(waits[i].sync); in vk_sync_binary_wait_many() 101 .stage_mask = waits[i].stage_mask, in vk_sync_binary_wait_many()
|
D | vk_fence.c | 265 STACK_ARRAY(struct vk_sync_wait, waits, fenceCount); in vk_common_WaitForFences() 269 waits[i] = (struct vk_sync_wait) { in vk_common_WaitForFences() 279 VkResult result = vk_sync_wait_many(device, fenceCount, waits, in vk_common_WaitForFences() 282 STACK_ARRAY_FINISH(waits); in vk_common_WaitForFences()
|
D | vk_semaphore.c | 308 STACK_ARRAY(struct vk_sync_wait, waits, pWaitInfo->semaphoreCount); in vk_common_WaitSemaphores() 314 waits[i] = (struct vk_sync_wait) { in vk_common_WaitSemaphores() 325 VkResult result = vk_sync_wait_many(device, wait_count, waits, in vk_common_WaitSemaphores() 328 STACK_ARRAY_FINISH(waits); in vk_common_WaitSemaphores()
|
D | vk_sync.h | 235 const struct vk_sync_wait *waits, 344 const struct vk_sync_wait *waits,
|
/third_party/mesa3d/src/imagination/vulkan/ |
D | pvr_queue.c | 197 struct vk_sync **waits, in pvr_process_graphics_cmd() argument 253 waits, in pvr_process_graphics_cmd() 285 struct vk_sync **waits, in pvr_process_compute_cmd() argument 304 waits, in pvr_process_compute_cmd() 326 struct vk_sync **waits, in pvr_process_transfer_cmds() argument 346 waits, in pvr_process_transfer_cmds() 460 struct vk_sync **waits, in pvr_process_cmd_buffer() argument 480 waits, in pvr_process_cmd_buffer() 490 waits, in pvr_process_cmd_buffer() 500 waits, in pvr_process_cmd_buffer() [all …]
|
D | pvr_job_compute.c | 40 struct vk_sync **waits, in pvr_compute_job_ws_submit_info_init() argument 51 submit_info->waits = waits; in pvr_compute_job_ws_submit_info_init() 90 struct vk_sync **waits, in pvr_compute_job_submit() argument 99 waits, in pvr_compute_job_submit()
|
D | pvr_job_transfer.c | 42 struct vk_sync **waits, in pvr_transfer_job_submit() argument 51 waits[i], in pvr_transfer_job_submit()
|
D | pvr_job_compute.h | 36 struct vk_sync **waits,
|
/third_party/mesa3d/src/imagination/vulkan/winsys/pvrsrvkm/ |
D | pvr_srv_job_null.c | 38 struct vk_sync **waits, in pvr_srv_winsys_null_job_submit() argument 48 struct pvr_srv_sync *srv_wait_sync = to_srv_sync(waits[i]); in pvr_srv_winsys_null_job_submit() 51 if (!waits[i] || srv_wait_sync->fd < 0) in pvr_srv_winsys_null_job_submit()
|
D | pvr_srv_sync.c | 128 const struct vk_sync_wait *waits, in pvr_srv_sync_wait_many() argument 148 struct pvr_srv_sync *srv_sync = to_srv_sync(waits[i].sync); in pvr_srv_sync_wait_many() 205 pvr_srv_sync_signal(device, waits[i].sync, 0U); in pvr_srv_sync_wait_many()
|
D | pvr_srv_job_compute.c | 182 struct pvr_srv_sync *srv_wait_sync = to_srv_sync(submit_info->waits[i]); in pvr_srv_winsys_compute_submit() 185 if (!submit_info->waits[i] || srv_wait_sync->fd < 0) in pvr_srv_winsys_compute_submit()
|
D | pvr_srv_job_null.h | 34 struct vk_sync **waits,
|
/third_party/node/test/parallel/ |
D | test-net-server-max-connections.js | 34 const waits = []; variable 38 waits.push(function() { connection.end(); }); 71 while (cb = waits.shift()) {
|
/third_party/flutter/skia/third_party/externals/sdl/test/ |
D | testatomic.c | 481 int waits; member 490 int waits; member 512 ++data->waits; in FIFO_Writer() 520 ++data->waits; in FIFO_Writer() 542 ++data->waits; in FIFO_Reader() 555 ++data->waits; in FIFO_Reader() 675 … SDL_Log("Writer %d wrote %d events, had %d waits\n", i, EVENTS_PER_WRITER, writerData[i].waits); in RunFIFOTest() 688 SDL_Log("Reader %d read %d events, had %d waits\n", i, total, readerData[i].waits); in RunFIFOTest()
|
/third_party/mesa3d/src/intel/vulkan/ |
D | anv_bo_sync.c | 102 const struct vk_sync_wait *waits, in anv_bo_sync_wait() argument 114 struct anv_bo_sync *sync = to_anv_bo_sync(waits[i].sync); in anv_bo_sync_wait() 171 struct anv_bo_sync *sync = to_anv_bo_sync(waits[i].sync); in anv_bo_sync_wait()
|
/third_party/gstreamer/gstreamer/docs/random/wtay/ |
D | clocking3 | 6 - add to list of pending sync waits 17 - add to list of pending async waits
|
/third_party/mesa3d/src/broadcom/vulkan/ |
D | v3dv_queue.c | 100 sync_info->waits, in queue_wait_idle() 141 struct vk_sync_wait waits[info->count]; in handle_reset_query_cpu_job() local 149 waits[wait_count] = (struct vk_sync_wait){ in handle_reset_query_cpu_job() 156 VkResult result = vk_sync_wait_many(&job->device->vk, wait_count, waits, in handle_reset_query_cpu_job() 466 uint32_t count, struct vk_sync_wait *waits) in process_waits() argument 493 uint32_t syncobj = vk_sync_as_drm_syncobj(waits[i].sync)->syncobj; in process_waits() 624 vk_sync_as_drm_syncobj(sync_info->waits[i].sync)->syncobj; in set_in_syncs() 812 needs_bcl_sync = sync_info->waits[i].stage_mask & in handle_cl_job() 1077 .waits = submit->waits, in v3dv_queue_driver_submit() 1085 result = process_waits(queue, sync_info.wait_count, sync_info.waits); in v3dv_queue_driver_submit()
|
/third_party/mesa3d/src/microsoft/vulkan/ |
D | dzn_sync.c | 130 const struct vk_sync_wait *waits, in dzn_sync_wait() argument 152 struct dzn_sync *sync = container_of(waits[i].sync, struct dzn_sync, vk); in dzn_sync_wait() 155 values[i] = (sync->vk.flags & VK_SYNC_IS_TIMELINE) ? waits[i].wait_value : 1; in dzn_sync_wait()
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/ |
D | vmservice_test.dart | 209 …st Duration(milliseconds: 50)); // the last listViews had no views, so it waits 50ms, then calls g… 216 time.elapse(const Duration(milliseconds: 50)); // so refreshViews waits another 50ms 223 time.elapse(const Duration(milliseconds: 50)); // so refreshViews waits another 50ms 230 time.elapse(const Duration(milliseconds: 50)); // so refreshViews waits another 50ms 240 time.elapse(const Duration(milliseconds: 50)); // so refreshViews waits another 50ms
|
/third_party/mesa3d/src/imagination/vulkan/winsys/ |
D | pvr_winsys.h | 283 struct vk_sync **waits; member 304 struct vk_sync **waits; member 353 struct vk_sync **waits; member 489 struct vk_sync **waits,
|
/third_party/flutter/flutter/packages/flutter_driver/lib/src/common/ |
D | find.dart | 49 /// A Flutter Driver command that waits until [finder] can locate the target. 51 /// Creates a command that waits for the widget identified by [finder] to 79 /// A Flutter Driver command that waits until [finder] can no longer locate the target. 81 /// Creates a command that waits for the widget identified by [finder] to 109 /// A Flutter Driver command that waits until there are no more transient callbacks in the queue. 111 /// Creates a command that waits for there to be no transient callbacks. 122 /// A Flutter Driver command that waits until the frame is synced. 124 /// Creates a command that waits until there's no pending frame scheduled. 135 /// A Flutter Driver command that waits until the Flutter engine rasterizes the
|
/third_party/openssl/doc/man3/ |
D | BIO_socket_wait.pod | 22 BIO_socket_wait() waits on the socket B<fd> for reading if B<for_read> is not 0, 26 BIO_wait() waits at most until B<max_time> on the given (typically socket-based)
|