Home
last modified time | relevance | path

Searched full:construct (Results 1 – 25 of 1743) sorted by relevance

12345678910>>...70

/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/
H A DArrayRef.h66 /// Construct an empty ArrayRef.
69 /// Construct an empty ArrayRef from std::nullopt.
72 /// Construct an ArrayRef from a single element.
76 /// Construct an ArrayRef from a pointer and length.
80 /// Construct an ArrayRef from a range.
86 /// Construct an ArrayRef from a SmallVector. This is templated in order to
88 /// copy-construct an ArrayRef.
94 /// Construct an ArrayRef from a std::vector.
99 /// Construct an ArrayRef from a std::array
104 /// Construct a
[all...]
H A DTwine.h50 /// concatenation method to construct interior nodes; the result must be
174 /// Construct a nullary twine; the kind must be NullKind or EmptyKind.
179 /// Construct a binary twine.
187 /// Construct a twine from explicit values.
261 /// Construct from an empty string.
268 /// Construct from a C string.
286 /// Construct from an std::string.
292 /// Construct from an std::string_view by converting it to a pointer and
303 /// Construct from a StringRef.
310 /// Construct from a StringLiteral.
[all …]
/freebsd-src/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_error.cpp82 char const *cons = NULL; // Construct name. in __kmp_pragma()
113 enum cons_type ct, // Construct type. in __kmp_error_construct()
114 ident_t const *ident // Construct ident. in __kmp_error_construct()
116 char *construct = __kmp_pragma(ct, ident); in __kmp_error_construct() local
117 __kmp_fatal(__kmp_msg_format(id, construct), __kmp_msg_null); in __kmp_error_construct()
118 KMP_INTERNAL_FREE(construct); in __kmp_error_construct()
122 enum cons_type ct, // First construct type. in __kmp_error_construct2()
123 ident_t const *ident, // First construct ident. in __kmp_error_construct2()
124 struct cons_data const *cons // Second construct. in __kmp_error_construct2()
174 "Begin construct stack with %d items for thread %d\n", in dump_cons_stack()
[all …]
/freebsd-src/sys/dev/isci/scil/
H A Dsati_util.c60 * by a user to construct ATA/ATAPI commands, copy ATA device
96 * @brief This method will construct the ATA identify device command.
122 * @brief This method will construct the ATA Execute Device Diagnostic command.
359 * @brief This method will construct the ATA check power mode command.
410 * @brief This method will construct the common response IU in the user
440 * @brief This method will construct the buffer for sense data
445 * for which to construct the buffer for sense data.
583 * @brief This method will construct the sense data buffer in the user's
588 * for which to construct the sense data.
590 * for which to construct th
[all...]
H A Dscif_remote_device.h101 * user must ensure that a construct or destruct method is never
102 * invoked when an existing construct or destruct method is ongoing.
113 * location into which this method shall construct the new
134 * user must ensure that a construct or destruct method is never
135 * invoked when an existing construct or destruct method is ongoing.
172 * user must ensure that a construct or destruct method is never
173 * invoked when an existing construct or destruct method is ongoing.
207 * user must ensure that a construct or destruct method is never
208 * invoked when an existing construct or destruct method is ongoing.
H A Dscif_sas_smp_io_request.c139 * construct its contents based upon the supplied SMP request.
181 //construct, only when we got valid io memory. in scif_sas_smp_request_build()
204 * @brief construct a smp Report Genernal command to the fw_device.
241 * @brief construct a SMP Report Manufacturer Info request to the fw_device.
278 * @brief construct a smp Discover command to the fw_device.
320 * @brief construct a smp REPORT PHY SATA command to the fw_device.
358 * @brief construct a smp REPORT PHY SATA command to the fw_device.
395 * @brief construct a smp CONFIG ROUTE INFO command to the fw_device.
551 // Before we construct new io using the same memory, we need to in scif_sas_smp_external_request_retry()
H A Dscic_task_request.h85 * @brief This method is called by the SCI user to construct all SCI Core
131 * @brief This method is called by the SCI user to construct all SCI Core
137 * to the core task request object for which to construct
149 * @brief This method is called by the SCI user to construct all SCI Core
155 * handle to the core task request object for which to construct
/freebsd-src/contrib/llvm-project/libcxx/include/__memory_resource/
H A Dpolymorphic_allocator.h105 construct(__ptr, std::forward<_CtorArgs>(__ctor_args)...); in new_object()
119 _LIBCPP_HIDE_FROM_ABI void construct(_Tp* __p, _Ts&&... __args) { in construct() function
129 construct(pair<_T1, _T2>* __p, piecewise_construct_t, tuple<_Args1...> __x, tuple<_Args2...> __y) { in construct() function
141 _LIBCPP_HIDE_FROM_ABI void construct(pair<_T1, _T2>* __p) { in construct() function
142 construct(__p, piecewise_construct, tuple<>(), tuple<>()); in construct()
146 _LIBCPP_HIDE_FROM_ABI void construct(pair<_T1, _T2>* __p, _Up&& __u, _Vp&& __v) { in construct() function
147 construct(__p, in construct()
154 _LIBCPP_HIDE_FROM_ABI void construct(pair<_T1, _T2>* __p, const pair<_U1, _U2>& __pr) { in construct() function
155 construct(__p, piecewise_construct, std::forward_as_tuple(__pr.first), std::forward_as_tuple(__pr.second)); in construct()
159 _LIBCPP_HIDE_FROM_ABI void construct(pai function
[all...]
/freebsd-src/contrib/llvm-project/libcxx/include/
H A Dscoped_allocator75 template <class T, class... Args> void construct(T* p, Args&& args);
77 void construct(pair<T1, T2>* p, piecewise_construct t, tuple<Args1...> x,
80 void construct(pair<T1, T2>* p);
82 void construct(pair<T1, T2>* p, U&& x, V&& y);
84 void construct(pair<T1, T2>* p, const pair<U, V>& x);
86 void construct(pair<T1, T2>* p, pair<U, V>&& x);
409 _LIBCPP_HIDE_FROM_ABI void construct(_Type* __ptr, _Args&&... __args) {
413 allocator_traits<typename _OM::type>::construct(
420 _LIBCPP_HIDE_FROM_ABI void construct(_Tp* __p, _Args&&... __args) {
426 construct(pai
[all...]
/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/
H A DOpenACCKinds.h22 // Represents the Construct/Directive kind of a pragma directive. Note the
23 // OpenACC standard is inconsistent between calling these Construct vs
48 // Atomic Construct.
196 /// 'use_device' clause, allowed on 'host_data' construct.
201 /// 'delete' clause, allowed on the 'exit data' construct.
203 /// 'detach' clause, allowed on the 'exit data' construct.
205 /// 'device' clause, allowed on the 'update' construct.
210 /// 'device_resident' clause, allowed on the 'declare' construct.
215 /// 'host' clause, allowed on 'update' construct.
217 /// 'link' clause, allowed on 'declare' construct
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DThreadSafeModule.h49 /// Construct a null context.
52 /// Construct a ThreadSafeContext from the given LLVMContext.
56 "Can not construct a ThreadSafeContext from a nullptr"); in ThreadSafeContext()
59 /// Returns a pointer to the LLVMContext that was used to construct this
63 /// Returns a pointer to the LLVMContext that was used to construct this
79 /// Default construct a ThreadSafeModule. This results in a null module and
101 /// Construct a ThreadSafeModule from a unique_ptr<Module> and a
107 /// Construct a ThreadSafeModule from a unique_ptr<Module> and an
/freebsd-src/lib/libnvmf/
H A Dlibnvmf.h154 * Construct a CQE for a reply to a command capsule in 'nc' with the
162 * Construct and send a response capsule to a command capsule with
177 /* Construct and send an error response capsule. */
182 * Construct and send an error response capsule using a generic status
188 /* Construct and send a simple success response capsule. */
203 * Construct and send a response capsule with the Fabrics CONNECT
211 /* Construct and send a response capsule for a successful CONNECT. */
301 /* Construct a 16-byte HostId from kern.hostuuid. */
304 /* Construct a NQN from kern.hostuuid. */
324 * Construct
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCTargetDesc.h90 // Construct a PE/COFF machine code streamer which will generate a PE/COFF
97 /// Construct an ELF Mach-O object writer.
100 /// Construct an ARM Mach-O object writer.
105 /// Construct an ARM PE/COFF object writer.
109 /// Construct ARM Mach-O relocation info.
/freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h29 /// Construct a PBQP vector of the given size.
33 /// Construct a PBQP vector with initializer.
39 /// Copy construct a PBQP vector.
45 /// Move construct a PBQP vector.
126 /// Construct a PBQP Matrix with the given dimensions.
131 /// Construct a PBQP Matrix with the given dimensions and initial
139 /// Copy construct a PBQP matrix.
146 /// Move construct a PBQP matrix.
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h217 /// A helper function to construct a RangeSpanList for a given
226 /// This scope represents an inlined body of a function. Construct a
230 /// Construct new DW_TAG_lexical_block for this scope and
239 /// Construct a DIE for the given DbgVariable.
247 /// Construct a DIE for the given DbgLabel.
252 /// Construct a DIE for a given scope.
256 /// Construct a DIE for this subprogram scope.
277 /// Construct a call site entry DIE describing a call within \p Scope to a
287 /// Construct call site parameter DIEs for the \p CallSiteDIE. The \p Params
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DJITEventListener.h67 // Construct an IntelJITEventListener
70 // Construct an IntelJITEventListener with a test Intel JIT API implementation
83 // Construct an OProfileJITEventListener
86 // Construct an OProfileJITEventListener with a test opagent implementation
/freebsd-src/contrib/llvm-project/libcxx/include/__ranges/
H A Dto.h99 // Case 1 -- construct directly from the given range. in to()
104 // Case 2 -- construct using the `from_range_t` tagged constructor. in to()
109 // Case 3 -- construct from a begin-end iterator pair. in to()
114 // Case 4 -- default-construct (or construct from the extra arguments) and insert, reserving the size if possible. in to()
164 // Case 1 -- can construct directly from the given range. in __deduce_func()
170 // Case 2 -- can construct from the given range using the `from_range_t` tagged constructor. in __deduce_func()
177 // Case 3 -- can construct from a begin-end iterator pair. in __deduce_func()
/freebsd-src/crypto/openssl/util/
H A Dcheck-format-test-negatives.c167 1; while (2); /*@ more than one stmt just to construct case */ in g()
176 else do /*@ (non-brace) code before 'do' just to construct case */ in g()
180 b); do /*@ (non-brace) code before 'do' just to construct case */ in g()
185 b); do /*@ (non-brace) code before 'do' just to construct case */ in g()
191 do f(c, c); /*@ (non-brace) code after 'do' just to construct case */ in g()
200 b); else /*@ (non-brace) code before 'else' just to construct case */ in g()
206 { /*@ brace after 'if' not on same line just to construct case */ in g()
215 } else /*@ no brace after 'else' just to construct case */ in g()
343 { /*@ brace after 'if' not on same line just to construct case */ in f()
/freebsd-src/contrib/llvm-project/libcxx/include/__memory/
H A Duninitialized_algorithms.h396 // Constructs the object at the given location using the allocator's construct method.
424 allocator_traits<_Alloc>::construct(__alloc, __loc); in __allocator_construct_at_multidimensional()
428 // Constructs the object at the given location using the allocator's construct method, passing along
447 "trying to construct an array."); in __allocator_construct_at_multidimensional()
463 allocator_traits<_Alloc>::construct(__alloc, __loc, __arg); in __allocator_construct_at_multidimensional()
468 // range from left to right using the construct method of the allocator (rebound to the
494 // to the allocator's construct method, which results in value initialization.
538 // Copy-construct [__first1, __last1) in [__first2, __first2 + N), where N is distance(__first1, __last1).
549 allocator_traits<_Alloc>::construct(__alloc, std::__to_address(__first2), *__first1); in __uninitialized_allocator_copy_impl()
610 // Relocation means that the objects in [__first, __last) are placed into __result as-if by move-construct an
[all...]
/freebsd-src/crypto/openssl/doc/internal/man3/
H A Dossl_method_construct.pod20 /* Construct a new method */
21 void *(*construct)(const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov,
105 Places the I<method> created by the construct() function (see below)
120 =item construct()
/freebsd-src/crypto/openssl/include/internal/
H A Dcore.h21 * construct an arbitrary method from a dispatch table found by looking
42 /* Construct a new method */
43 void *(*construct)(const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov, member
/freebsd-src/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.h123 /// Construct an X86 Windows COFF machine code streamer which will generate
137 /// Construct an X86 Mach-O object writer.
141 /// Construct an X86 ELF object writer.
144 /// Construct an X86 Win COFF object writer.
/freebsd-src/contrib/llvm-project/clang/include/clang/AST/
H A DDeclOpenMP.h182 /// Combiner for declare reduction construct.
184 /// Initializer for declare reduction construct.
195 /// Reference to the previous declare reduction construct in the same
197 /// the declare reduction construct is declared inside compound statement.
219 /// Get combiner expression of the declare reduction construct.
228 /// Set combiner expression for the declare reduction construct.
237 /// construct.
251 /// Set initializer expression for the declare reduction construct.
262 /// Get reference to previous declare reduction construct in the same
361 /// Get reference to previous declare mapper construct i
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Option/
H A DArgList.h374 /// Construct a constant string pointer whose in MakeArgString()
473 /// Construct a new derived arg list from \p BaseArgs. in getArgString()
498 /// AddFlagArg - Construct a new FlagArg for the given option \p Id and in AddFlagArg()
504 /// AddPositionalArg - Construct a new Positional arg for the given option in AddPositionalArg()
512 /// AddSeparateArg - Construct a new Positional arg for the given option in AddSeparateArg()
520 /// AddJoinedArg - Construct a new Positional arg for the given option in AddJoinedArg()
527 /// MakeFlagArg - Construct a new FlagArg for the given option \p Id.
530 /// MakePositionalArg - Construct a new Positional arg for the
535 /// MakeSeparateArg - Construct a new Positional arg for the
540 /// MakeJoinedArg - Construct
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPContext.h32 /// IDs for all OpenMP context selector trait sets (construct/device/...).
122 /// recorded as well. If \p Property is in the `construct` set it is recorded
131 /// \p Score is not null, it recorded as well. If \p Set is the `construct`
144 if (Set == TraitSet::construct)
166 if (Set == TraitSet::construct) in addTrait()

12345678910>>...70