| /freebsd-12.1/contrib/libc++/include/ |
| H A D | scoped_allocator | 81 void construct(pair<T1, T2>* p); 83 void construct(pair<T1, T2>* p, U&& x, V&& y); 85 void construct(pair<T1, T2>* p, const pair<U, V>& x); 87 void construct(pair<T1, T2>* p, pair<U, V>&& x); 501 void construct(_Tp* __p, _Args&& ...__args) 506 void construct(pair<_T1, _T2>* __p, piecewise_construct_t, 510 allocator_traits<typename _OM::type>::construct( 530 void construct(pair<_T1, _T2>* __p) 535 construct(__p, piecewise_construct, 542 construct(__p, piecewise_construct, [all …]
|
| H A D | __split_buffer | 203 __alloc_traits::construct(__a, _VSTD::__to_raw_pointer(this->__end_)); 222 __alloc_traits::construct(__a, _VSTD::__to_raw_pointer(this->__end_), __x); 247 __alloc_traits::construct(__buf.__alloc(), 251 __alloc_traits::construct(__a, _VSTD::__to_raw_pointer(this->__end_), *__first); 268 __alloc_traits::construct(__a, _VSTD::__to_raw_pointer(this->__end_), *__first); 491 __alloc_traits::construct(__alloc(), _VSTD::__to_raw_pointer(__begin_-1), __x); 522 __alloc_traits::construct(__alloc(), _VSTD::__to_raw_pointer(__begin_-1), 555 __alloc_traits::construct(__alloc(), _VSTD::__to_raw_pointer(__end_), __x); 586 __alloc_traits::construct(__alloc(), _VSTD::__to_raw_pointer(__end_), 617 __alloc_traits::construct(__alloc(), _VSTD::__to_raw_pointer(__end_),
|
| H A D | deque | 40 // construct/copy/destroy: 1226 // construct/copy/destroy: 1830 __alloc_traits::construct(__a, _VSTD::addressof(*__base::end()), __v); 1873 __alloc_traits::construct(__a, _VSTD::addressof(*__base::end()), 2135 __alloc_traits::construct(__a, _VSTD::addressof(*__i), __v); 2231 __alloc_traits::construct(__a, _VSTD::addressof(*__i), *__j); 2275 __alloc_traits::construct(__a, _VSTD::addressof(*__i), *__f); 2288 __alloc_traits::construct(__a, _VSTD::addressof(*__i)); 2301 __alloc_traits::construct(__a, _VSTD::addressof(*__i), __v); 2687 // move construct [__f, __l) to [__r, __r + (__l-__f)). [all …]
|
| H A D | forward_list | 901 __node_traits::construct(__a, _VSTD::addressof(__h->__value_)); 923 __node_traits::construct(__a, _VSTD::addressof(__h->__value_)); 1126 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), 1156 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), __v); 1183 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), 1214 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), __v); 1231 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), __v); 1241 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), __v); 1281 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), *__f); 1378 __node_traits::construct(__a, _VSTD::addressof(__h->__value_)); [all …]
|
| H A D | memory | 140 void construct(U* p, Args&&... args); 1730 {__a.construct(__p, __a0);} 1824 construct(_Up* __p, _Args&&... __args) 1831 construct(pointer __p) 1840 construct(pointer __p, _A0& __a0) 1847 construct(pointer __p, const _A0& __a0) 1855 construct(pointer __p, _A0& __a0, _A1& __a1) 1925 construct(_Up* __p, _Args&&... __args) 1932 construct(pointer __p) 1941 construct(pointer __p, _A0& __a0) [all …]
|
| H A D | list | 1452 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x); 1479 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x); 1495 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x); 1545 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), *__f); 1561 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), *__f); 1598 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x); 1611 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x); 1894 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_)); 1909 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_)); 1951 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x); [all …]
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | c-incpath.c | 224 && cur->construct == tmp->construct) in remove_duplicates() 233 && cur->construct == tmp->construct) in remove_duplicates() 241 && cur->construct == join->construct)) in remove_duplicates() 359 p->construct = 0; in add_path()
|
| /freebsd-12.1/contrib/libc++/include/experimental/ |
| H A D | memory_resource | 206 void construct(_Tp* __p, _Ts &&... __args) 215 void construct(pair<_T1, _T2>* __p, piecewise_construct_t, 238 void construct(pair<_T1, _T2>* __p) { 239 construct(__p, piecewise_construct, tuple<>(), tuple<>()); 244 void construct(pair<_T1, _T2> * __p, _Up && __u, _Vp && __v) { 245 construct(__p, piecewise_construct 252 void construct(pair<_T1, _T2> * __p, pair<_U1, _U2> const & __pr) { 253 construct(__p, piecewise_construct 260 void construct(pair<_T1, _T2> * __p, pair<_U1, _U2> && __pr){ 261 construct(__p, piecewise_construct
|
| /freebsd-12.1/contrib/gcclibs/libgomp/ |
| H A D | libgomp.texi | 953 * Implementing MASTER construct:: 954 * Implementing CRITICAL construct:: 955 * Implementing ATOMIC construct:: 956 * Implementing FLUSH construct:: 957 * Implementing BARRIER construct:: 962 * Implementing PARALLEL construct:: 963 * Implementing FOR construct:: 964 * Implementing ORDERED construct:: 966 * Implementing SINGLE construct:: 1027 @node Implementing FLUSH construct [all …]
|
| /freebsd-12.1/contrib/libstdc++/include/backward/ |
| H A D | iterator.h | 165 construct(_T1* __p, const _T2& __value) in construct() function 170 construct(_T1* __p) in construct() function
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugAranges.cpp | 66 construct(); in generate() 83 void DWARFDebugAranges::construct() { in construct() function in DWARFDebugAranges
|
| /freebsd-12.1/contrib/libstdc++/include/bits/ |
| H A D | stl_uninitialized.h | 239 __alloc.construct(&*__cur, *__first); in __uninitialized_copy_a() 265 __alloc.construct(&*__cur, __x); in __uninitialized_fill_a() 291 __alloc.construct(&*__cur, __x); in __uninitialized_fill_n_a()
|
| H A D | vector.tcc | 98 this->_M_impl.construct(this->_M_impl._M_finish, __x); in insert() 249 this->_M_impl.construct(this->_M_impl._M_finish, in _M_insert_aux() 279 this->_M_impl.construct(__new_finish, __x); in _M_insert_aux()
|
| /freebsd-12.1/bin/sh/tests/expansion/ |
| H A D | length4.0 | 3 # The construct ${#?} is ambiguous in POSIX.1-2008: it could be the length
|
| /freebsd-12.1/contrib/libstdc++/include/ext/ |
| H A D | codecvt_specializations.h | 115 { construct(__obj); } in _GLIBCXX_BEGIN_NAMESPACE() 121 construct(__obj); in _GLIBCXX_BEGIN_NAMESPACE() 188 construct(const encoding_state& __obj) in _GLIBCXX_BEGIN_NAMESPACE()
|
| H A D | malloc_allocator.h | 110 construct(pointer __p, const _Tp& __val) in construct() function
|
| H A D | new_allocator.h | 106 construct(pointer __p, const _Tp& __val) in construct() function
|
| H A D | throw_allocator.h | 232 construct(pointer p, const T& val) in construct() function 233 { return std::allocator<value_type>().construct(p, val); } in construct()
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | DIE.h | 362 template <class T> void construct(T V) { in construct() function 407 construct<DIE##T>(*X.get<DIE##T>()); \ in copyVal() 411 construct<const DIE##T *>(*X.get<const DIE##T *>()); \ in copyVal() 438 construct<DIE##T>(V); \ 444 construct<const DIE##T *>(V); \
|
| /freebsd-12.1/contrib/compiler-rt/lib/cfi/ |
| H A D | cfi_blacklist.txt | 16 # in order to call std::allocator_traits<T>::construct.
|
| /freebsd-12.1/share/examples/kld/firmware/ |
| H A D | README | 18 This is mainly to demonstrate how to construct firmware image modules.
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDebugAranges.h | 33 void construct();
|
| /freebsd-12.1/secure/lib/libcrypto/arm/ |
| H A D | ghashv8-armx.S | 193 vext.8 q3,q8,q8,#8 @ re-construct q3 194 adds r3,r3,#32 @ re-construct r3 195 veor q0,q0,q2 @ re-construct q0
|
| /freebsd-12.1/contrib/openmp/runtime/src/ |
| H A D | kmp_error.cpp | 113 char *construct = __kmp_pragma(ct, ident); in __kmp_error_construct() local 114 __kmp_fatal(__kmp_msg_format(id, construct), __kmp_msg_null); in __kmp_error_construct() 115 KMP_INTERNAL_FREE(construct); in __kmp_error_construct()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | Statistic.h | 62 void construct(const char *debugtype, const char *name, const char *desc) { in construct() function
|