Home
last modified time | relevance | path

Searched refs:construct (Results 1 – 25 of 449) sorted by relevance

12345678910>>...18

/openbsd-src/gnu/llvm/libcxx/include/__memory_resource/
H A Dpolymorphic_allocator.h102 construct(__ptr, std::forward<_CtorArgs>(__ctor_args)...); in new_object()
116 _LIBCPP_HIDE_FROM_ABI void construct(_Tp* __p, _Ts&&... __args) { in construct() function
126construct(pair<_T1, _T2>* __p, piecewise_construct_t, tuple<_Args1...> __x, tuple<_Args2...> __y) { in construct() function
138 _LIBCPP_HIDE_FROM_ABI void construct(pair<_T1, _T2>* __p) { in construct() function
139 construct(__p, piecewise_construct, tuple<>(), tuple<>()); in construct()
143 _LIBCPP_HIDE_FROM_ABI void construct(pair<_T1, _T2>* __p, _Up&& __u, _Vp&& __v) { in construct() function
144 construct(__p, in construct()
151 _LIBCPP_HIDE_FROM_ABI void construct(pair<_T1, _T2>* __p, const pair<_U1, _U2>& __pr) { in construct() function
152construct(__p, piecewise_construct, std::forward_as_tuple(__pr.first), std::forward_as_tuple(__pr.… in construct()
156 _LIBCPP_HIDE_FROM_ABI void construct(pair<_T1, _T2>* __p, pair<_U1, _U2>&& __pr) { in construct() function
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dctors15.C11 int construct = 0; variable
15 Element() { construct++; if (construct > 6) {printf ("FAIL\n"); exit(1);}} in Element()
/openbsd-src/gnu/llvm/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);
517 _LIBCPP_HIDE_FROM_ABI void construct(_Type* __ptr, _Args&&... __args) {
521 allocator_traits<typename _OM::type>::construct(
529 void construct(_Tp* __p, _Args&& ...__args)
534 void construct(pair<_T1, _T2>* __p, piecewise_construct_t,
[all …]
H A D__split_buffer220 __alloc_traits::construct(this->__alloc(), _VSTD::__to_address(__tx.__pos_));
237 __alloc_traits::construct(this->__alloc(),
256 __alloc_traits::construct(__buf.__alloc(),
260 __alloc_traits::construct(__a, _VSTD::__to_address(this->__end_), *__first);
272 __alloc_traits::construct(this->__alloc(),
513 __alloc_traits::construct(__alloc(), _VSTD::__to_address(__begin_-1), __x);
543 __alloc_traits::construct(__alloc(), _VSTD::__to_address(__begin_-1),
575 __alloc_traits::construct(__alloc(), _VSTD::__to_address(__end_), __x);
605 __alloc_traits::construct(__alloc(), _VSTD::__to_address(__end_),
637 __alloc_traits::construct(__alloc(), _VSTD::__to_address(__end_),
H A Ddeque39 // construct/copy/destroy:
550 // construct/copy/destroy:
1285 __alloc_traits::construct(__a, _VSTD::addressof(*end()), __v);
1297 __alloc_traits::construct(__a, _VSTD::addressof(*--begin()), __v);
1311 __alloc_traits::construct(__a, _VSTD::addressof(*end()), _VSTD::move(__v));
1328 __alloc_traits::construct(__a, _VSTD::addressof(*end()),
1344 __alloc_traits::construct(__a, _VSTD::addressof(*--begin()), _VSTD::move(__v));
1363 __alloc_traits::construct(__a, _VSTD::addressof(*--begin()), _VSTD::forward<_Args>(__args)...);
1385 __alloc_traits::construct(__a, _VSTD::addressof(*--begin()), _VSTD::move(__v));
1393 __alloc_traits::construct(__a, _VSTD::addressof(*__bm1), _VSTD::move(*__b));
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dc-incpath.c224 && 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()
/openbsd-src/gnu/llvm/clang/docs/
H A DOpenMPSupport.rst40 accesses. For the `distribute` construct, a static schedule is used
43 present). For the `for` construct, the schedule is static with chunk
149 | task | clause: depend on the taskwait construct | :pa…
217 | device | teams construct on the host device | :pa…
225 | atomic | hints for the atomic construct | :go…
268 | atomic | 'compare' clause on atomic construct | :go…
270 | atomic | 'fail' clause on atomic construct | :pa…
290 | device | thread_limit clause on target construct | :no…
292 | device | has_device_addr clause on target construct | :no…
300 | device | interop construct | :pa…
[all …]
/openbsd-src/gnu/llvm/libcxx/include/experimental/
H A Dmemory_resource208 void construct(_Tp* __p, _Ts &&... __args)
217 void construct(pair<_T1, _T2>* __p, piecewise_construct_t,
240 void construct(pair<_T1, _T2>* __p) {
241 construct(__p, piecewise_construct, tuple<>(), tuple<>());
246 void construct(pair<_T1, _T2> * __p, _Up && __u, _Vp && __v) {
247 construct(__p, piecewise_construct
254 void construct(pair<_T1, _T2> * __p, pair<_U1, _U2> const & __pr) {
255 construct(__p, piecewise_construct
262 void construct(pair<_T1, _T2> * __p, pair<_U1, _U2> && __pr){
263 construct(__p, piecewise_construct
/openbsd-src/gnu/lib/libstdc++/libstdc++/testsuite/
H A Dtestsuite_allocator.h56 construct() { constructCount_++; } in construct() function
145 construct(pointer p, const T& value) in construct() function
148 allocation_tracker::construct(); in construct()
/openbsd-src/gnu/gcc/libgomp/
H A Dlibgomp.texi942 * Implementing MASTER construct::
943 * Implementing CRITICAL construct::
944 * Implementing ATOMIC construct::
945 * Implementing FLUSH construct::
946 * Implementing BARRIER construct::
947 * Implementing THREADPRIVATE construct::
951 * Implementing PARALLEL construct::
952 * Implementing FOR construct::
953 * Implementing ORDERED construct::
954 * Implementing SECTIONS construct::
[all …]
H A Dlibgomp.info831 * Implementing MASTER construct::
832 * Implementing CRITICAL construct::
833 * Implementing ATOMIC construct::
834 * Implementing FLUSH construct::
835 * Implementing BARRIER construct::
836 * Implementing THREADPRIVATE construct::
840 * Implementing PARALLEL construct::
841 * Implementing FOR construct::
842 * Implementing ORDERED construct::
843 * Implementing SECTIONS construct::
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/opt/
H A Dunroll1.C159 static void construct(double* addr)
164 static void construct(double* addr, const double& model)
198 ElementProperties::construct(pt);
255 ElementProperties::construct(pNew++,*pOld++);
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugAranges.cpp73 construct(); in generate()
90 void DWARFDebugAranges::construct() { in construct() function in DWARFDebugAranges
/openbsd-src/gnu/gcc/libstdc++-v3/include/backward/
H A Diterator.h165 construct(_T1* __p, const _T2& __value) in construct() function
170 construct(_T1* __p) in construct() function
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/backward/
H A Diterator.h165 construct(_T1* __p, const _T2& __value) in construct() function
170 construct(_T1* __p) in construct() function
/openbsd-src/gnu/llvm/llvm/include/llvm/Frontend/OpenMP/
H A DOMPContext.h144 if (Set == TraitSet::construct)
166 if (Set == TraitSet::construct) in addTrait()
/openbsd-src/gnu/gcc/libstdc++-v3/include/bits/
H A Dstl_uninitialized.h239 __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()
/openbsd-src/gnu/llvm/llvm/lib/Frontend/OpenMP/
H A DOMPContext.cpp225 TraitSet::construct && in isVariantApplicableInContextHelper()
286 case TraitSet::construct: in getVariantMatchScore()
327 TraitSet::construct && in getVariantMatchScore()
489 AllowsTraitScore = Set != TraitSet::construct && Set != TraitSet::device; in isValidTraitSelectorForTraitSet()
/openbsd-src/gnu/llvm/compiler-rt/lib/cfi/
H A Dcfi_ignorelist.txt16 # in order to call std::allocator_traits<T>::construct.
/openbsd-src/gnu/llvm/libcxx/include/__memory/
H A Dtemp_value.h48 _Traits::construct(__a, __addr(), std::forward<_Args>(__args)...); in __temp_value()
H A Duninitialized_algorithms.h433 allocator_traits<_Alloc>::construct(__alloc, __loc); in __allocator_construct_at_multidimensional()
472 allocator_traits<_Alloc>::construct(__alloc, __loc, __arg); in __allocator_construct_at_multidimensional()
553 allocator_traits<_Alloc>::construct(__alloc, std::__to_address(__first2), *__first1); in __uninitialized_allocator_copy()
604 …allocator_traits<_Alloc>::construct(__alloc, std::__to_address(__first2), std::move_if_noexcept(*_…
606 allocator_traits<_Alloc>::construct(__alloc, std::__to_address(__first2), std::move(*__first1));
H A Dallocator_traits.h199 (void)std::declval<_Alloc>().construct(std::declval<_Args>()...)
294 static void construct(allocator_type& __a, _Tp* __p, _Args&&... __args) {
296 __a.construct(__p, _VSTD::forward<_Args>(__args)...);
302 static void construct(allocator_type&, _Tp* __p, _Args&&... __args) {
H A Dallocator.h167 void construct(_Up* __p, _Args&&... __args) {
252 void construct(_Up* __p, _Args&&... __args) {
/openbsd-src/gnu/gcc/libstdc++-v3/include/ext/
H A Dcodecvt_specializations.h115 { construct(__obj); } in _GLIBCXX_BEGIN_NAMESPACE()
121 construct(__obj); in _GLIBCXX_BEGIN_NAMESPACE()
188 construct(const encoding_state& __obj) in _GLIBCXX_BEGIN_NAMESPACE()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/compat/break/
H A DREADME11 there is a warning for the construct.

12345678910>>...18