| /freebsd-src/contrib/llvm-project/libcxx/include/__memory_resource/ |
| H A D | polymorphic_allocator.h | 105 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 D | scoped_allocator | 75 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...] |
| H A D | __split_buffer | 259 __alloc_traits::construct(this->__alloc(), std::__to_address(__tx.__pos_)); 274 __alloc_traits::construct(this->__alloc(), std::__to_address(__tx.__pos_), __x); 296 __alloc_traits::construct(__buf.__alloc(), std::__to_address(__buf.__end_), std::move(*__p)); 299 __alloc_traits::construct(__a, std::__to_address(this->__end_), *__first); 316 __alloc_traits::construct(this->__alloc(), std::__to_address(__tx.__pos_), *__first); 481 __alloc_traits::construct(__alloc(), std::__to_address(__begin_ - 1), __x); 503 __alloc_traits::construct(__alloc(), std::__to_address(__begin_ - 1), std::move(__x)); 526 __alloc_traits::construct(__alloc(), std::__to_address(__end_), __x); 548 __alloc_traits::construct(__alloc(), std::__to_address(__end_), std::move(__x)); 571 __alloc_traits::construct(__allo [all...] |
| H A D | deque | 39 // construct/copy/destroy: 590 // construct/copy/destroy: 1555 __alloc_traits::construct(__a, std::addressof(*end()), __v); 1566 __alloc_traits::construct(__a, std::addressof(*--begin()), __v); 1579 __alloc_traits::construct(__a, std::addressof(*end()), std::move(__v)); 1596 __alloc_traits::construct(__a, std::addressof(*end()), std::forward<_Args>(__args)...); 1610 __alloc_traits::construct(__a, std::addressof(*--begin()), std::move(__v)); 1628 __alloc_traits::construct(__a, std::addressof(*--begin()), std::forward<_Args>(__args)...); 1647 __alloc_traits::construct(__a, std::addressof(*--begin()), std::move(__v)); 1653 __alloc_traits::construct(__ [all...] |
| /freebsd-src/crypto/openssl/crypto/encode_decode/ |
| H A D | encoder_local.h | 98 OSSL_ENCODER_CONSTRUCT *construct; member 153 OSSL_DECODER_CONSTRUCT *construct; member
|
| H A D | encoder_lib.c | 62 if (ctx->cleanup == NULL || ctx->construct == NULL) { in OSSL_ENCODER_to_bio() 332 OSSL_ENCODER_CONSTRUCT *construct) in OSSL_ENCODER_CTX_set_construct() argument 338 ctx->construct = construct; in OSSL_ENCODER_CTX_set_construct() 573 data->ctx->construct(current_encoder_inst, in encoder_process()
|
| H A D | decoder_lib.c | 565 OSSL_DECODER_CONSTRUCT *construct) in OSSL_DECODER_CTX_set_construct() argument 571 ctx->construct = construct; in OSSL_DECODER_CTX_set_construct() 602 return ctx->construct; in OSSL_DECODER_CTX_get_construct() 729 if (ctx->construct != NULL) { in decoder_process() 738 rv = ctx->construct(decoder_inst, params, ctx->construct_data); in decoder_process()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugAranges.cpp | 73 construct(); in generate() 90 void DWARFDebugAranges::construct() { in construct() function in DWARFDebugAranges
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMPContext.h | 144 if (Set == TraitSet::construct) 166 if (Set == TraitSet::construct) in addTrait()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
| H A D | OMPContext.cpp | 133 // the construct traits, we say it is a strict subset. Note that the latter in isStrictSubset() 226 TraitSet::construct && in isVariantApplicableInContextHelper() 287 case TraitSet::construct: in getVariantMatchScore() 288 // We handle the construct traits later via the VMI.ConstructTraits in getVariantMatchScore() 325 "Mismatch in the construct traits!"); in getVariantMatchScore() 328 TraitSet::construct && in getVariantMatchScore() 490 AllowsTraitScore = Set != TraitSet::construct && Set != TraitSet::device; in isValidTraitSelectorForTraitSet()
|
| /freebsd-src/bin/sh/tests/expansion/ |
| H A D | length4.0 | 2 # The construct ${#?} is ambiguous in POSIX.1-2008: it could be the length
|
| /freebsd-src/contrib/llvm-project/compiler-rt/lib/cfi/ |
| H A D | cfi_ignorelist.txt | 16 # in order to call std::allocator_traits<T>::construct.
|
| /freebsd-src/contrib/llvm-project/libcxx/include/__memory/ |
| H A D | temp_value.h | 50 _Traits::construct(__a, __addr(), std::forward<_Args>(__args)...); in __temp_value()
|
| H A D | allocator_traits.h | 201 struct __has_construct_impl<decltype((void)std::declval<_Alloc>().construct(std::declval<_Args>()...)), 317 construct(allocator_type& __a, _Tp* __p, _Args&&... __args) { 319 __a.construct(__p, std::forward<_Args>(__args)...); 327 construct(allocator_type&, _Tp* __p, _Args&&... __args) {
|
| H A D | uninitialized_algorithms.h | 396 // 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...] |
| H A D | allocator.h | 164 _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI void construct(_Up* __p, _Args&&... __args) { 242 _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI void construct(_Up* __p, _Args&&... __args) {
|
| /freebsd-src/crypto/openssl/doc/internal/man3/ |
| H A D | ossl_method_construct.pod | 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 D | core.h | 43 void *(*construct)(const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov, member
|
| /freebsd-src/share/examples/kld/firmware/ |
| H A D | README | 17 This is mainly to demonstrate how to construct firmware image modules.
|
| /freebsd-src/crypto/openssl/external/perl/Text-Template-1.56/ |
| H A D | INSTALL | 6 to construct the Makefile, then
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDebugAranges.h | 36 void construct();
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | DIE.h | 404 template <class T> void construct(T V) { in construct() function 449 construct<DIE##T>(*X.get<DIE##T>()); \ in copyVal() 453 construct<const DIE##T *>(*X.get<const DIE##T *>()); \ in copyVal() 482 construct<DIE##T>(V); \ 488 construct<const DIE##T *>(V); \
|
| /freebsd-src/contrib/llvm-project/openmp/runtime/src/ |
| H A D | kmp_error.cpp | 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()
|
| /freebsd-src/sys/crypto/openssl/arm/ |
| H A D | ghashv8-armx.S | 202 vext.8 q3,q8,q8,#8 @ re-construct q3 203 adds r3,r3,#32 @ re-construct r3 204 veor q0,q0,q2 @ re-construct q0
|
| /freebsd-src/crypto/openssl/include/openssl/ |
| H A D | encoder.h | 96 OSSL_ENCODER_CONSTRUCT *construct);
|