Home
last modified time | relevance | path

Searched refs:temporary (Results 1 – 25 of 933) sorted by relevance

12345678910>>...38

/third_party/boost/boost/numeric/ublas/
Doperation_sparse.hpp38 vector<value_type> temporary (e2 ().size2 ()); in sparse_prod() local
39 temporary.clear (); in sparse_prod()
43 size_type jb (temporary.size ()); in sparse_prod()
59 temporary (j) += *it2 * *itr; in sparse_prod()
67 if (temporary (j) != value_type/*zero*/()) { in sparse_prod()
73 m (it1.index1 (), j) = temporary (j); in sparse_prod()
74 temporary (j) = value_type/*zero*/(); in sparse_prod()
97 vector<value_type> temporary (e1 ().size1 ()); in sparse_prod() local
98 temporary.clear (); in sparse_prod()
102 size_type ib (temporary.size ()); in sparse_prod()
[all …]
Dvector.hpp330 self_type temporary (ae); in operator =() local
331 return assign_temporary (temporary); in operator =()
359 self_type temporary (*this + ae); in operator +=() local
360 return assign_temporary (temporary); in operator +=()
397 self_type temporary (*this - ae); in operator -=() local
398 return assign_temporary (temporary); in operator -=()
1101 self_type temporary (ae); in operator =() local
1102 return assign_temporary (temporary); in operator =()
1130 self_type temporary (*this + ae); in operator +=() local
1131 return assign_temporary (temporary); in operator +=()
[all …]
Dvector_sparse.hpp502 self_type temporary (ae, detail::map_capacity (data())); in operator =() local
503 return assign_temporary (temporary); in operator =()
516 self_type temporary (*this + ae, detail::map_capacity (data())); in operator +=() local
517 return assign_temporary (temporary); in operator +=()
534 self_type temporary (*this - ae, detail::map_capacity (data())); in operator -=() local
535 return assign_temporary (temporary); in operator -=()
1108 self_type temporary (ae, capacity_); in operator =() local
1109 return assign_temporary (temporary); in operator =()
1122 self_type temporary (*this + ae, capacity_); in operator +=() local
1123 return assign_temporary (temporary); in operator +=()
[all …]
/third_party/mesa3d/src/panfrost/vulkan/
Dpanvk_sync.c58 if (sync->temporary) { in sync_set_temporary()
59 struct drm_syncobj_destroy destroy = { .handle = sync->temporary }; in sync_set_temporary()
63 sync->temporary = syncobj; in sync_set_temporary()
81 bool temporary, bool sync_fd, int fd) in sync_import() argument
87 uint32_t *dst = temporary ? &sync->temporary : &sync->permanent; in sync_import()
101 assert(temporary); in sync_import()
141 .handle = sync->temporary ? : sync->permanent, in sync_export()
329 if (fence->syncobj.temporary) { in panvk_WaitForFences()
330 handles[i] = fence->syncobj.temporary; in panvk_WaitForFences()
373 uint32_t handle = fence->syncobj.temporary ? : fence->syncobj.permanent; in panvk_GetFenceStatus()
[all …]
/third_party/python/Doc/library/
Dtempfile.rst1 :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 …]
/third_party/mesa3d/src/intel/vulkan/
Danv_queue.c924 struct anv_semaphore_impl *impl = &semaphore->temporary; in maybe_transfer_temporary_semaphore()
989 semaphore->temporary.type != ANV_SEMAPHORE_TYPE_NONE ? in anv_queue_submit_add_in_semaphore()
990 &semaphore->temporary : &semaphore->permanent; in anv_queue_submit_add_in_semaphore()
1088 semaphore->temporary.type != ANV_SEMAPHORE_TYPE_NONE ? in anv_queue_submit_add_out_semaphore()
1089 &semaphore->temporary : &semaphore->permanent; in anv_queue_submit_add_out_semaphore()
1152 fence->temporary.type != ANV_FENCE_TYPE_NONE ? in anv_queue_submit_add_fence()
1153 &fence->temporary : &fence->permanent; in anv_queue_submit_add_fence()
1204 assert(fence->temporary.type == ANV_FENCE_TYPE_NONE); in anv_post_queue_fence_update()
1559 if (fence->temporary.type == ANV_FENCE_TYPE_NONE) in anv_fence_reset_temporary()
1562 anv_fence_impl_cleanup(device, &fence->temporary); in anv_fence_reset_temporary()
[all …]
Danv_wsi.c52 struct anv_semaphore_impl *impl = &semaphore->temporary; in anv_wsi_signal_semaphore_for_memory()
72 struct anv_fence_impl *impl = &fence->temporary; in anv_wsi_signal_fence_for_memory()
146 semaphore->temporary.type != ANV_SEMAPHORE_TYPE_NONE ? in anv_QueuePresentKHR()
147 &semaphore->temporary : &semaphore->permanent; in anv_QueuePresentKHR()
/third_party/mesa3d/src/amd/vulkan/
Dradv_wsi.c90 fence->temporary.kind != RADV_FENCE_NONE ? &fence->temporary : &fence->permanent; in radv_AcquireNextImage2KHR()
95 struct radv_semaphore_part *part = semaphore->temporary.kind != RADV_SEMAPHORE_NONE in radv_AcquireNextImage2KHR()
96 ? &semaphore->temporary in radv_AcquireNextImage2KHR()
/third_party/boost/boost/interprocess/detail/
Dos_file_functions.hpp126 (const char *name, mode_t mode, const permissions & perm = permissions(), bool temporary = false) in create_new_file() argument
128 unsigned long attr = temporary ? winapi::file_attribute_temporary : 0; in create_new_file()
135 (const char *name, mode_t mode, const permissions & perm = permissions(), bool temporary = false) in create_or_open_file() argument
137 unsigned long attr = temporary ? winapi::file_attribute_temporary : 0; in create_or_open_file()
144 (const char *name, mode_t mode, bool temporary = false) in open_existing_file() argument
146 unsigned long attr = temporary ? winapi::file_attribute_temporary : 0; in open_existing_file()
443 (const char *name, mode_t mode, const permissions & perm = permissions(), bool temporary = false)
445 (void)temporary;
454 (const char *name, mode_t mode, const permissions & perm = permissions(), bool temporary = false)
456 (void)temporary;
[all …]
/third_party/flutter/skia/third_party/externals/wuffs/lang/ast/
Dsort.go44 temporary = 1
48 case temporary:
53 marks[n] = temporary
/third_party/skia/third_party/externals/angle2/tools/flex-bison/third_party/m4sugar/
Dforeach.m467 # 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/gettext/gettext-runtime/libasprintf/
Dautosprintf.cc63 autosprintf& autosprintf::operator = (autosprintf temporary) in operator =() argument
67 std::swap (temporary.str, this->str); in operator =()
/third_party/mesa3d/src/virtio/vulkan/
Dvn_queue.h49 struct vn_sync_payload temporary; member
64 struct vn_sync_payload temporary; member
Dvn_queue.c453 fence->temporary.type = VN_SYNC_TYPE_INVALID; in vn_fence_init_payloads()
462 struct vn_sync_payload *temp = &fence->temporary; in vn_fence_signal_wsi()
526 vn_sync_payload_release(dev, &fence->temporary); in vn_DestroyFence()
547 vn_sync_payload_release(dev, &fence->temporary); in vn_ResetFences()
746 vn_sync_payload_release(dev, &fence->temporary); in vn_GetFenceFdKHR()
765 sem->temporary.type = VN_SYNC_TYPE_INVALID; in vn_semaphore_init_payloads()
776 vn_sync_payload_release(dev, &sem->temporary); in vn_semaphore_reset_wsi()
784 struct vn_sync_payload *temp = &sem->temporary; in vn_semaphore_signal_wsi()
850 vn_sync_payload_release(dev, &sem->temporary); in vn_DestroySemaphore()
1020 vn_sync_payload_release(dev, &sem->temporary); in vn_GetSemaphoreFdKHR()
/third_party/openssl/doc/man3/
DBN_CTX_start.pod5 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()
DBN_copy.pod22 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
DSSL_get_peer_tmp_key.pod6 about temporary keys used during a handshake
18 SSL_get_peer_tmp_key() returns the temporary key provided by the peer and
/third_party/boost/libs/optional/doc/
D16_in_place_factories.qbk8 a fully constructed object, often temporary, just to follow the copy from:
48 // No temporary created.
92 // No temporary created.
133 // No temporary created.
/third_party/boost/libs/gil/doc/design/
Dtechnicalities.rst15 is that the proxy reference is constructed as a temporary object and
37 C++ does not allow for matching a temporary object against a non-constant
66 correctly. You must use a real value type as the temporary. A further
/third_party/boost/libs/gil/doc/html/_sources/design/
Dtechnicalities.rst.txt15 is that the proxy reference is constructed as a temporary object and
37 C++ does not allow for matching a temporary object against a non-constant
66 correctly. You must use a real value type as the temporary. A further
/third_party/mesa3d/src/freedreno/vulkan/
Dtu_drm.c44 uint32_t permanent, temporary; member
596 sync->binary.temporary = 0; in sync_create()
614 if (sync->binary.temporary) { in sync_set_temporary()
616 &(struct drm_syncobj_destroy) { .handle = sync->binary.temporary }); in sync_set_temporary()
618 sync->binary.temporary = syncobj; in sync_set_temporary()
641 sync_import(VkDevice _device, struct tu_syncobj *sync, bool temporary, bool sync_fd, int fd) in sync_import() argument
647 uint32_t *dst = temporary ? &sync->binary.temporary : &sync->binary.permanent; in sync_import()
661 assert(temporary); in sync_import()
698 .handle = sync->binary.temporary ?: sync->binary.permanent, in sync_export()
1431 .handle = sem->binary.temporary ?: sem->binary.permanent, in tu_QueueSubmit()
[all …]
/third_party/python/Lib/
Dbdb.py238 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/boost/libs/outcome/doc/src/content/reference/functions/
Dstrong_swap.md6 …ns throw an exception (i) move construct to temporary (ii) move assign `b` to `a` (iii) move assig…
/third_party/selinux/secilc/
DREADME31 Remove temporary build files.
37 Remove temporary build files and compile binaries.
/third_party/skia/resources/sksl/inliner/
DTrivialArgumentsInlineDirectly.sksl47 // function without a temporary variable.
60 // These expressions are considered "non-trivial" and will be placed in a temporary variable

12345678910>>...38