| /xsrc/external/mit/MesaLib/dist/src/virtio/vulkan/ |
| vn_queue.h | 49 struct vn_sync_payload temporary; member in struct:vn_fence 64 struct vn_sync_payload temporary; member in struct:vn_semaphore
|
| vn_queue.c | 453 fence->temporary.type = VN_SYNC_TYPE_INVALID; 462 struct vn_sync_payload *temp = &fence->temporary; 526 vn_sync_payload_release(dev, &fence->temporary); 547 vn_sync_payload_release(dev, &fence->temporary); 746 vn_sync_payload_release(dev, &fence->temporary); 765 sem->temporary.type = VN_SYNC_TYPE_INVALID; 776 vn_sync_payload_release(dev, &sem->temporary); 784 struct vn_sync_payload *temp = &sem->temporary; 850 vn_sync_payload_release(dev, &sem->temporary); 1020 vn_sync_payload_release(dev, &sem->temporary); [all...] |
| /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/ |
| radv_wsi.c | 90 fence->temporary.kind != RADV_FENCE_NONE ? &fence->temporary : &fence->permanent; 95 struct radv_semaphore_part *part = semaphore->temporary.kind != RADV_SEMAPHORE_NONE 96 ? &semaphore->temporary
|
| radv_device.c | 4197 fence->temporary.kind != RADV_FENCE_NONE ? &fence->temporary : &fence->permanent; 4503 if (semaphore->temporary.kind != RADV_SEMAPHORE_NONE) 4582 if (semaphore->temporary.kind != RADV_SEMAPHORE_NONE) { 4584 deferred->temporary_semaphore_parts[temporary_idx] = semaphore->temporary; 4585 semaphore->temporary.kind = RADV_SEMAPHORE_NONE; 4593 if (semaphore->temporary.kind != RADV_SEMAPHORE_NONE) { 4594 deferred->signal_semaphores[i] = &semaphore->temporary; 5777 radv_destroy_fence_part(device, &fence->temporary); 5848 fence->temporary.kind != RADV_FENCE_NONE ? &fence->temporary : &fence->permanent [all...] |
| radv_private.h | 2573 struct radv_semaphore_part temporary; member in struct:radv_semaphore 2619 struct radv_fence_part temporary; member in struct:radv_fence
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/ |
| panvk_sync.c | 58 if (sync->temporary) { 59 struct drm_syncobj_destroy destroy = { .handle = sync->temporary }; 63 sync->temporary = syncobj; 81 bool temporary, bool sync_fd, int fd) 87 uint32_t *dst = temporary ? &sync->temporary : &sync->permanent; 101 assert(temporary); 141 .handle = sync->temporary ? : sync->permanent, 329 if (fence->syncobj.temporary) { 330 handles[i] = fence->syncobj.temporary; [all...] |
| panvk_vX_device.c | 219 semaphores[i + 1] = sem->syncobj.temporary ? : sem->syncobj.permanent; 294 panvk_queue_transfer_sync(queue, sem->syncobj.temporary ? : sem->syncobj.permanent); 300 panvk_queue_transfer_sync(queue, fence->syncobj.temporary ? : fence->syncobj.permanent);
|
| panvk_private.h | 291 uint32_t permanent, temporary;
|
| /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/ |
| anv_wsi.c | 45 /* Put a BO semaphore with the image BO in the temporary. For BO binary 52 struct anv_semaphore_impl *impl = &semaphore->temporary; 66 /* Put a BO fence with the image BO in the temporary. For BO fences, we 72 struct anv_fence_impl *impl = &fence->temporary; 146 semaphore->temporary.type != ANV_SEMAPHORE_TYPE_NONE ? 147 &semaphore->temporary : &semaphore->permanent; 182 * "If the import is temporary, the implementation must restore the
|
| anv_queue.c | 842 * "If the import is temporary, the implementation must restore the 848 * make copies of the temporary syncobj to ensure they stay alive until we 906 * - We're dealing with a temporary semaphore that needs to be reset to 916 * Those temporary semaphores are later freed in anv_queue_submit_free(). 924 struct anv_semaphore_impl *impl = &semaphore->temporary; 928 /* No temporary, use the permanent semaphore. */ 967 /* BO backed timeline semaphores cannot be temporary. */ 989 semaphore->temporary.type != ANV_SEMAPHORE_TYPE_NONE ? 990 &semaphore->temporary : &semaphore->permanent; 1076 /* Under most circumstances, out fences won't be temporary. However, th [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/ |
| anv_queue.c | 347 anv_fence_impl_cleanup(device, &fence->temporary); 366 * temporary permanence, that fence’s prior permanent payload is 370 if (fence->temporary.type != ANV_FENCE_TYPE_NONE) 371 anv_fence_impl_cleanup(device, &fence->temporary); 403 fence->temporary.type != ANV_FENCE_TYPE_NONE ? 404 &fence->temporary : &fence->permanent; 409 assert(fence->temporary.type == ANV_FENCE_TYPE_NONE); 516 fence->temporary.type != ANV_FENCE_TYPE_NONE ? 517 &fence->temporary : &fence->permanent; 563 * have no temporary state. Since BO fences will never be exported [all...] |
| anv_batch_chain.c | 1606 semaphore->temporary.type != ANV_SEMAPHORE_TYPE_NONE ? 1607 &semaphore->temporary : &semaphore->permanent; 1650 /* Under most circumstances, out fences won't be temporary. However, 1653 * "If the import is temporary, the implementation must restore the 1662 semaphore->temporary.type != ANV_SEMAPHORE_TYPE_NONE ? 1663 &semaphore->temporary : &semaphore->permanent; 1691 /* Under most circumstances, out fences won't be temporary. However, 1694 * "If the import is temporary, the implementation must restore the 1703 fence->temporary.type != ANV_FENCE_TYPE_NONE ? 1704 &fence->temporary : &fence->permanent [all...] |
| anv_private.h | 2452 /* Stream objects for storing temporary data */ 2582 /* Temporary fence state. A fence *may* have temporary state. That state 2584 * ANV_SEMAPHORE_TYPE_NONE when the fence is reset. A fence with temporary 2586 * before the temporary state can be exported from the fence in the other 2589 struct anv_fence_impl temporary; member in struct:anv_fence 2638 /* Temporary semaphore state. A semaphore *may* have temporary state. 2641 * semaphore with temporary state cannot be signaled because the semaphore 2642 * must already be signaled before the temporary state can be exported fro 2645 struct anv_semaphore_impl temporary; member in struct:anv_semaphore [all...] |
| /xsrc/external/mit/xmh/dist/ |
| tocintrnl.h | 62 unsigned temporary:1; /* Whether we should delete this message when member in struct:_MsgRec 102 Boolean force_reset; /* temporary bug work-around for sequences */
|
| msg.c | 111 if (msg->temporary) (void)strcat(str, " [Temporary]"); 191 /* Restore the draftfile from its temporary hiding place. */ 228 if (!msg->temporary) 249 * scrn was showing a temporary msg that is not being shown in any other scrn, 282 if (scrn->msg->temporary) { 485 /* Make this a temporary message. */ 490 msg->temporary = TRUE; 501 msg->temporary = FALSE;
|
| tocutil.c | 232 toc->force_reset = False; /* %%% temporary */ 353 ((msg1)->temporary || (msg2)->temporary ||\ 449 msg->temporary = FALSE; /* Don't try to auto-delete msg. */
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/vulkan/ |
| tu_drm.c | 44 uint32_t permanent, temporary; member in struct:tu_binary_syncobj 596 sync->binary.temporary = 0; 614 if (sync->binary.temporary) { 616 &(struct drm_syncobj_destroy) { .handle = sync->binary.temporary }); 618 sync->binary.temporary = syncobj; 641 sync_import(VkDevice _device, struct tu_syncobj *sync, bool temporary, bool sync_fd, int fd) 647 uint32_t *dst = temporary ? &sync->binary.temporary : &sync->binary.permanent; 661 assert(temporary); 698 .handle = sync->binary.temporary ?: sync->binary.permanent [all...] |
| /xsrc/external/mit/fontconfig/dist/doc/ |
| fcatomic.fncs | 49 @PURPOSE@ return new temporary file name
|
| /xsrc/external/mit/MesaLib/dist/docs/_extra/specs/OLD/ |
| MESA_program_debug.spec | 225 attribute, temporary, or result register in the program string. 329 printf("Current temporary registers:\n");
|
| /xsrc/external/mit/MesaLib.old/dist/docs/specs/OLD/ |
| MESA_program_debug.spec | 225 attribute, temporary, or result register in the program string. 329 printf("Current temporary registers:\n");
|
| /xsrc/external/mit/util-macros/dist/ |
| configure | 1529 # When interrupted or exit'd, cleanup temporary files, and complete 3105 -d, --debug don't remove temporary files 3251 # Have a temporary directory for convenience. Make it in the build tree 3275 } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
|
| /xsrc/external/mit/glw/dist/ |
| ltmain.sh | 513 # Make a temporary directory that won't clash with other running 540 func_fatal_error "cannot create temporary directory \`$my_tmpdir'" 1110 # temporary ltwrapper_script. 1479 temporary object file, and libtool could not work around it because 1534 temporary object file, and libtool could not work around it because 1583 temporary object file, and libtool could not work around it because 2953 # $output - temporary wrapper script for $objdir/$outputname 3405 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname 6762 # Eliminate all temporary directories. 7569 func_verbose "creating a temporary reloadable object file: $output [all...] |
| /xsrc/external/mit/libXevie/dist/ |
| ltmain.sh | 513 # Make a temporary directory that won't clash with other running 540 func_fatal_error "cannot create temporary directory \`$my_tmpdir'" 1110 # temporary ltwrapper_script. 1479 temporary object file, and libtool could not work around it because 1534 temporary object file, and libtool could not work around it because 1583 temporary object file, and libtool could not work around it because 2953 # $output - temporary wrapper script for $objdir/$outputname 3405 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname 6762 # Eliminate all temporary directories. 7569 func_verbose "creating a temporary reloadable object file: $output [all...] |
| /xsrc/external/mit/xcb-util/dist/ |
| ltmain.sh | 351 # Make a temporary directory that won't clash with other running 378 func_fatal_error "cannot create temporary directory \`$my_tmpdir'" 950 # temporary ltwrapper_script. 1313 temporary object file, and libtool could not work around it because 1368 temporary object file, and libtool could not work around it because 1417 temporary object file, and libtool could not work around it because 2710 # $output - temporary wrapper script for $objdir/$outputname 3136 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname 6441 # Eliminate all temporary directories. 7244 func_verbose "creating a temporary reloadable object file: $output [all...] |
| /xsrc/external/mit/xf86-video-intel-old/dist/ |
| ltmain.sh | 351 # Make a temporary directory that won't clash with other running 378 func_fatal_error "cannot create temporary directory \`$my_tmpdir'" 950 # temporary ltwrapper_script. 1313 temporary object file, and libtool could not work around it because 1368 temporary object file, and libtool could not work around it because 1417 temporary object file, and libtool could not work around it because 2710 # $output - temporary wrapper script for $objdir/$outputname 3136 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname 6441 # Eliminate all temporary directories. 7244 func_verbose "creating a temporary reloadable object file: $output [all...] |