/third_party/mesa3d/src/vulkan/runtime/ |
D | vk_fence.c | 169 if (fence->temporary == NULL) in vk_fence_reset_temporary() 172 vk_sync_destroy(device, fence->temporary); in vk_fence_reset_temporary() 173 fence->temporary = NULL; in vk_fence_reset_temporary() 360 struct vk_sync *temporary = NULL, *sync; in vk_common_ImportFenceFdKHR() local 366 0 /* initial_value */, &temporary); in vk_common_ImportFenceFdKHR() 370 sync = temporary; in vk_common_ImportFenceFdKHR() 391 if (temporary != NULL) in vk_common_ImportFenceFdKHR() 392 vk_sync_destroy(device, temporary); in vk_common_ImportFenceFdKHR() 408 if (temporary) { in vk_common_ImportFenceFdKHR() 410 fence->temporary = temporary; in vk_common_ImportFenceFdKHR()
|
D | vk_semaphore.c | 196 if (semaphore->temporary == NULL) in vk_semaphore_reset_temporary() 199 vk_sync_destroy(device, semaphore->temporary); in vk_semaphore_reset_temporary() 200 semaphore->temporary = NULL; in vk_semaphore_reset_temporary() 399 struct vk_sync *temporary = NULL, *sync; in vk_common_ImportSemaphoreFdKHR() local 420 0 /* initial_value */, &temporary); in vk_common_ImportSemaphoreFdKHR() 424 sync = temporary; in vk_common_ImportSemaphoreFdKHR() 446 if (temporary != NULL) in vk_common_ImportSemaphoreFdKHR() 447 vk_sync_destroy(device, temporary); in vk_common_ImportSemaphoreFdKHR() 468 if (temporary) { in vk_common_ImportSemaphoreFdKHR() 470 semaphore->temporary = temporary; in vk_common_ImportSemaphoreFdKHR()
|
D | vk_semaphore.h | 50 struct vk_sync *temporary; member 70 return semaphore->temporary ? semaphore->temporary : &semaphore->permanent; in vk_semaphore_get_active_sync()
|
D | vk_fence.h | 46 struct vk_sync *temporary; member 75 return fence->temporary ? fence->temporary : &fence->permanent; in vk_fence_get_active_sync()
|
/third_party/python/Doc/library/ |
D | tempfile.rst | 1 :mod:`tempfile` --- Generate temporary files and directories 5 :synopsis: Generate temporary files and directories. 12 pair: temporary; file name 13 pair: temporary; file 17 This module creates temporary files and directories. It works on all 25 allow direct control over the location and name of temporary files and 28 shared temporary directories. 36 Return a :term:`file-like object` that can be used as a temporary storage area. 41 this; your code should not rely on a temporary file created using this 46 destruction of the file object the temporary file will be removed [all …]
|
D | bdb.rst | 23 .. class:: Breakpoint(self, file, line, temporary=0, cond=None, funcname=None) 25 This class implements temporary breakpoints, ignore counts, disabling and 63 * If it is temporary or not. 178 breakpoint is a temporary one, this method deletes it. 211 Handle how a breakpoint must be removed when it is a temporary one. 256 .. method:: set_break(filename, lineno, temporary=0, cond, funcname) 367 to delete a temporary breakpoint. Return ``(None, None)`` if there is no
|
/third_party/flutter/skia/third_party/externals/wuffs/lang/ast/ |
D | sort.go | 44 temporary = 1 48 case temporary: 53 marks[n] = temporary
|
/third_party/skia/third_party/externals/angle2/tools/flex-bison/third_party/m4sugar/ |
D | foreach.m4 | 67 # that temporary macro. Thus, the recursion is done in m4_for without 88 # Use m4_for to create a temporary macro in terms of a boilerplate 90 # odd, then rounding the last $# up in the temporary macro is 119 # We build the temporary macro _m4_b: 151 # We only have to speed up _m4_cond, by building the temporary _m4_c: 180 # temporary _m4_p: 203 # _m4_shiftn. If N is 3, then we build the temporary _m4_s, defined as 217 # Here, we use the temporary macro _m4_do, defined as 236 # Invoke _m4_r($@) with the temporary _m4_r built as 250 # Build the temporary macro _m4_map_args_pair, with the $2([$m+1]) [all …]
|
/third_party/mesa3d/src/virtio/vulkan/ |
D | vn_queue.h | 51 struct vn_sync_payload temporary; member 74 struct vn_sync_payload temporary; member
|
D | vn_queue.c | 514 fence->temporary.type = VN_SYNC_TYPE_INVALID; in vn_fence_init_payloads() 523 struct vn_sync_payload *temp = &fence->temporary; in vn_fence_signal_wsi() 657 vn_sync_payload_release(dev, &fence->temporary); in vn_CreateFence() 684 vn_sync_payload_release(dev, &fence->temporary); in vn_DestroyFence() 706 vn_sync_payload_release(dev, &fence->temporary); in vn_ResetFences() 928 vn_sync_payload_release(dev, &fence->temporary); in vn_GetFenceFdKHR() 947 sem->temporary.type = VN_SYNC_TYPE_INVALID; in vn_semaphore_init_payloads() 958 vn_sync_payload_release(dev, &sem->temporary); in vn_semaphore_reset_wsi() 966 struct vn_sync_payload *temp = &sem->temporary; in vn_semaphore_signal_wsi() 1034 vn_sync_payload_release(dev, &sem->temporary); in vn_DestroySemaphore() [all …]
|
/third_party/openssl/doc/man3/ |
D | BN_CTX_start.pod | 5 BN_CTX_start, BN_CTX_get, BN_CTX_end - use temporary BIGNUM variables 19 These functions are used to obtain temporary B<BIGNUM> variables from 25 called repeatedly to obtain temporary B<BIGNUM>s. All BN_CTX_get()
|
D | BN_copy.pod | 22 BN_with_flags creates a B<temporary> shallow copy of B<b> in B<dest>. It places 27 might commonly be used to create a temporary copy of a BIGNUM with the 28 B<BN_FLG_CONSTTIME> flag set for constant time operations. The temporary copy in
|
D | SSL_get_peer_tmp_key.pod | 6 about temporary keys used during a handshake 18 SSL_get_peer_tmp_key() returns the temporary key provided by the peer and
|
/third_party/python/Lib/ |
D | bdb.py | 238 if (flag and bp.temporary): 376 def set_break(self, filename, lineno, temporary=False, cond=None, argument 389 bp = Breakpoint(filename, lineno, temporary, cond, funcname) 681 def __init__(self, file, line, temporary=False, cond=None, funcname=None): argument 687 self.temporary = temporary 747 if self.temporary:
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/docs/ |
D | REGALLOC.rst | 46 copies the Variable into a *must-have-register* temporary, and then use that 47 temporary in the lowered instruction. 112 basic block starts by initializing a temporary set as the union of the live-in 114 captured as the initial value of the temporary set.) Then each instruction of 116 instruction are marked as live, by adding them to the temporary set, and the 118 from the temporary set. When we finish processing all of the block's 119 instructions, we add/union the temporary set into the basic block's live-in set. 144 variables, and the temporary set's size can be limited to that plus the largest 238 physical register. It does this by introducing *must-have-register* temporary 239 variables, and copies the program variable into the temporary to ensure that [all …]
|
/third_party/e2fsprogs/ |
D | 0006-e2fsck-exit-journal-recovery-when-find-EIO-ENOMEM-er.patch | 11 failure in jbd2_journal_revocer() is temporary but retry 12 e2fsck will skip the journal recovery when the temporary
|
/third_party/selinux/secilc/ |
D | README | 31 Remove temporary build files. 37 Remove temporary build files and compile binaries.
|
/third_party/skia/resources/sksl/inliner/ |
D | TrivialArgumentsInlineDirectly.sksl | 47 // function without a temporary variable. 60 // These expressions are considered "non-trivial" and will be placed in a temporary variable
|
/third_party/ltp/testcases/kernel/mce-test/ |
D | README | 79 During test, some temporary file will be put in work 80 directory, temporary files for a specific test driver will be 81 placed in corresponding directory, such as temporary files of
|
/third_party/python/Doc/c-api/ |
D | refcounting.rst | 89 reference to the deleted object in a temporary variable, update the list data 90 structure, and then call :c:func:`Py_DECREF` for the temporary variable. 106 the macro carefully uses a temporary variable and sets the argument to ``NULL``
|
/third_party/mesa3d/docs/relnotes/ |
D | 10.0.3.rst | 103 - mesa: use signed temporary variable to store \_ColorDrawBufferIndexes 104 - st/mesa: use signed temporary variable to store 113 - i965: Don't do the temporary-and-blit-copy for INVALIDATE_RANGE maps.
|
/third_party/python/Lib/test/data/ |
D | README | 1 This empty directory serves as destination for temporary files
|
/third_party/cups-filters/filter/braille/drivers/index/ |
D | indexv4.sh.in | 29 # Firmware 10.30 and above support temporary parameters 72 # No support for temporary parameters. Hoping that the user configured CUPS
|
/third_party/python/Lib/test/ |
D | test_bdb.py | 89 disp = 'yes ' if bp.temporary else 'no ' 106 def set_break(self, filename, lineno, temporary=False, cond=None, argument 120 res = super().set_break(filename, lineno, temporary=temporary, 549 def break_in_func(funcname, fname=__file__, temporary=False, cond=None): argument 550 return 'break', (fname, None, temporary, cond, funcname)
|
/third_party/openGLES/extensions/NV/ |
D | NV_alpha_to_coverage_dither_control.txt | 64 alpha values to a temporary coverage value. It is intended that the 65 number of 1's in the temporary coverage be proportional to the set
|