/freebsd/contrib/llvm-project/libcxx/include/__filesystem/ |
H A D | operations.h | 62 _LIBCPP_EXPORTED_FROM_ABI path __weakly_canonical(path const& __p, error_code* __ec = nullptr); 70 inline _LIBCPP_HIDE_FROM_ABI path absolute(const path& __p) { return __absolute(__p); } in absolute() argument 71 …line _LIBCPP_HIDE_FROM_ABI path absolute(const path& __p, error_code& __ec) { return __absolute(__… in absolute() argument 72 inline _LIBCPP_HIDE_FROM_ABI path canonical(const path& __p) { return __canonical(__p); } in canonical() argument 73 …ine _LIBCPP_HIDE_FROM_ABI path canonical(const path& __p, error_code& __ec) { return __canonical(_… in canonical() argument 103 …LIBCPP_HIDE_FROM_ABI bool create_directories(const path& __p) { return __create_directories(__p); } in create_directories() argument 104 inline _LIBCPP_HIDE_FROM_ABI bool create_directories(const path& __p, error_code& __ec) { in create_directories() argument 105 return __create_directories(__p, &__ec); in create_directories() 114 inline _LIBCPP_HIDE_FROM_ABI bool create_directory(const path& __p) { return __create_directory(__p… in create_directory() argument 115 inline _LIBCPP_HIDE_FROM_ABI bool create_directory(const path& __p, error_code& __ec) noexcept { in create_directory() argument [all …]
|
H A D | directory_iterator.h | 53 …_LIBCPP_HIDE_FROM_ABI explicit directory_iterator(const path& __p) : directory_iterator(__p, nullp… in directory_iterator() argument 55 _LIBCPP_HIDE_FROM_ABI directory_iterator(const path& __p, directory_options __opts) in directory_iterator() argument 56 : directory_iterator(__p, nullptr, __opts) {} in directory_iterator() 58 …_LIBCPP_HIDE_FROM_ABI directory_iterator(const path& __p, error_code& __ec) : directory_iterator(_… in directory_iterator() argument 60 …_LIBCPP_HIDE_FROM_ABI directory_iterator(const path& __p, directory_options __opts, error_code& __… in directory_iterator() argument 61 : directory_iterator(__p, &__ec, __opts) {} in directory_iterator() 88 __dir_element_proxy __p(**this); 90 return __p;
|
/freebsd/contrib/llvm-project/libcxx/include/__utility/ |
H A D | pair.h | 122 _LIBCPP_HIDE_FROM_ABI pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} in pair() 124 _LIBCPP_HIDE_FROM_ABI pair& operator=(pair const& __p) { 125 first = __p.first; 126 second = __p.second; 138 _LIBCPP_HIDE_FROM_ABI pair& operator=(pair<_U1, _U2> const& __p) { 139 first = __p.first; 140 second = __p.second; 201 pair(pair<_U1, _U2>& __p) noexcept((is_nothrow_constructible<first_type, _U1&>::value && in pair() 203 : first(__p.first), second(__p.second) {} in pair() 211 …pair(pair<_U1, _U2> const& __p) noexcept(is_nothrow_constructible<first_type, _U1 const&>::value && in pair() [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__functional/ |
H A D | mem_fun_ref.h | 30 _LIBCPP_HIDE_FROM_ABI explicit mem_fun_t(_Sp (_Tp::*__p)()) : __p_(__p) {} in mem_fun_t() argument 31 _LIBCPP_HIDE_FROM_ABI _Sp operator()(_Tp* __p) const { return (__p->*__p_)(); } in operator() 39 _LIBCPP_HIDE_FROM_ABI explicit mem_fun1_t(_Sp (_Tp::*__p)(_Ap)) : __p_(__p) {} in mem_fun1_t() 40 _LIBCPP_HIDE_FROM_ABI _Sp operator()(_Tp* __p, _Ap __x) const { return (__p->*__p_)(__x); } in operator() 58 _LIBCPP_HIDE_FROM_ABI explicit mem_fun_ref_t(_Sp (_Tp::*__p)()) : __p_(__p) {} in mem_fun_ref_t() argument 59 _LIBCPP_HIDE_FROM_ABI _Sp operator()(_Tp& __p) const { return (__p.*__p_)(); } in operator() 67 _LIBCPP_HIDE_FROM_ABI explicit mem_fun1_ref_t(_Sp (_Tp::*__p)(_Ap)) : __p_(__p) {} in mem_fun1_ref_t() 68 _LIBCPP_HIDE_FROM_ABI _Sp operator()(_Tp& __p, _Ap __x) const { return (__p.*__p_)(__x); } in operator() 87 _LIBCPP_HIDE_FROM_ABI explicit const_mem_fun_t(_Sp (_Tp::*__p)() const) : __p_(__p) {} in const_mem_fun_t() 88 _LIBCPP_HIDE_FROM_ABI _Sp operator()(const _Tp* __p) const { return (__p->*__p_)(); } in operator() [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | auto_ptr.h | 36 _LIBCPP_HIDE_FROM_ABI explicit auto_ptr(_Tp* __p = 0) _NOEXCEPT : __ptr_(__p) {} 37 _LIBCPP_HIDE_FROM_ABI auto_ptr(auto_ptr& __p) _NOEXCEPT : __ptr_(__p.release()) {} in __ptr_() argument 39 _LIBCPP_HIDE_FROM_ABI auto_ptr(auto_ptr<_Up>& __p) _NOEXCEPT : __ptr_(__p.release()) {} in auto_ptr() argument 40 _LIBCPP_HIDE_FROM_ABI auto_ptr& operator=(auto_ptr& __p) _NOEXCEPT { in auto_ptr() 41 reset(__p.release()); 45 _LIBCPP_HIDE_FROM_ABI auto_ptr& operator=(auto_ptr<_Up>& __p) _NOEXCEPT { 46 reset(__p 38 auto_ptr(auto_ptr & __p) auto_ptr() argument 66 auto_ptr(auto_ptr_ref<_Tp> __p) auto_ptr() argument [all...] |
H A D | allocator.h | 128 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void deallocate(_Tp* __p, size_t __n) _NOEXCEP… 130 ::operator delete(__p); 132 std::__libcpp_deallocate((void*)__p, __n * sizeof(_Tp), _LIBCPP_ALIGNOF(_Tp)); 164 _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI void construct(_Up* __p, _Args&&... __args) { 165 ::new ((void*)__p) _Up(std::forward<_Args>(__args)...); 168 _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI void destroy(pointer __p) { __p->~_Tp(); } 209 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void deallocate(const _Tp* __p, size_t __n) { 211 ::operator delete(const_cast<_Tp*>(__p)); 213 … std::__libcpp_deallocate((void*)const_cast<_Tp*>(__p), __n * sizeof(_Tp), _LIBCPP_ALIGNOF(_Tp)); 242 _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI void construct(_Up* __p, _Args&&... __args) { [all …]
|
H A D | shared_ptr.h | 204 _LIBCPP_HIDE_FROM_ABI __shared_ptr_pointer(_Tp __p, _Dp __d, _Alloc __a) in __shared_ptr_pointer() argument 205 : __data_(__compressed_pair<_Tp, _Dp>(__p, std::move(__d)), std::move(__a)) {} in __shared_ptr_pointer() 451 _LIBCPP_HIDE_FROM_ABI explicit shared_ptr(_Yp* __p) : __ptr_(__p) { 452 unique_ptr<_Yp> __hold(__p); 455 __cntrl_ = new _CntrlBlk(__p, __shared_ptr_default_delete<_Tp, _Yp>(), _AllocT()); 457 __enable_weak_this(__p, __p); 461 _LIBCPP_HIDE_FROM_ABI shared_ptr(_Yp* __p, _Dp __d) : __ptr_(__p) { 468 __cntrl_ = new _CntrlBlk(__p, std::move(__d), _AllocT()); 470 __cntrl_ = new _CntrlBlk(__p, __d, _AllocT()); 472 __enable_weak_this(__p, __p); [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__random/ |
H A D | negative_binomial_distribution.h | 45 …_HIDE_FROM_ABI explicit param_type(result_type __k = 1, double __p = 0.5) : __k_(__k), __p_(__p) {} in __k_() 63 …_ABI explicit negative_binomial_distribution(result_type __k, double __p = 0.5) : __p_(__k, __p) {} in __p_() argument 65 …_LIBCPP_HIDE_FROM_ABI explicit negative_binomial_distribution(result_type __k = 1, double __p = 0.… 66 : __p_(__k, __p) {} 68 …_LIBCPP_HIDE_FROM_ABI explicit negative_binomial_distribution(const param_type& __p) : __p_(__p) {} in negative_binomial_distribution() argument 77 _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g, const param_type& __p); 84 _LIBCPP_HIDE_FROM_ABI void param(const param_type& __p) { __p_ = __p; } in param() argument 104 double __p = __pr.p(); in operator() local 107 if (__k <= 21 * __p && sizeof(_IntType) > 1) { in operator() 108 bernoulli_distribution __gen(__p); in operator() [all …]
|
H A D | bernoulli_distribution.h | 37 _LIBCPP_HIDE_FROM_ABI explicit param_type(double __p = 0.5) : __p_(__p) {} 54 _LIBCPP_HIDE_FROM_ABI explicit bernoulli_distribution(double __p) : __p_(param_type(__p)) {} 56 _LIBCPP_HIDE_FROM_ABI explicit bernoulli_distribution(double __p = 0.5) : __p_(param_type(__p)) {} 58 _LIBCPP_HIDE_FROM_ABI explicit bernoulli_distribution(const param_type& __p) : __p_(__p) {} 67 _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g, const param_type& __p); in bernoulli_distribution() argument 73 _LIBCPP_HIDE_FROM_ABI void param(const param_type& __p) { __p 39 __p_(__p) __p_() argument 61 bernoulli_distribution(double __p) bernoulli_distribution() argument 85 param(const param_type & __p) param() argument 134 double __p; global() variable [all...] |
H A D | geometric_distribution.h | 41 _LIBCPP_HIDE_FROM_ABI explicit param_type(double __p = 0.5) : __p_(__p) {} 58 _LIBCPP_HIDE_FROM_ABI explicit geometric_distribution(double __p) : __p_(__p) {} 60 _LIBCPP_HIDE_FROM_ABI explicit geometric_distribution(double __p = 0.5) : __p_(__p) {} 62 _LIBCPP_HIDE_FROM_ABI explicit geometric_distribution(const param_type& __p) : __p_(__p) {} in geometric_distribution() 71 _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g, const param_type& __p) { 72 return negative_binomial_distribution<result_type>(1, __p argument 42 __p_(__p) __p_() argument 64 geometric_distribution(double __p) geometric_distribution() argument 93 param(const param_type & __p) param() argument 132 double __p; global() variable [all...] |
H A D | binomial_distribution.h | 45 _LIBCPP_HIDE_FROM_ABI explicit param_type(result_type __t = 1, double __p = 0.5); 65 _LIBCPP_HIDE_FROM_ABI explicit binomial_distribution(result_type __t, double __p = 0.5) 66 : __p_(param_type(__t, __p)) {} 68 _LIBCPP_HIDE_FROM_ABI explicit binomial_distribution(result_type __t = 1, double __p = 0.5) 69 : __p_(param_type(__t, __p)) {} in binomial_distribution() 71 _LIBCPP_HIDE_FROM_ABI explicit binomial_distribution(const param_type& __p) : __p_(__p) {} 80 _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g, const param_type& __p); 87 _LIBCPP_HIDE_FROM_ABI void param(const param_type& __p) { __p_ = __p; } in operator() 72 __p_(param_type (__t,__p)) __p_() argument 79 binomial_distribution(const param_type & __p) binomial_distribution() argument 100 param(const param_type & __p) param() argument 131 param_type(result_type __t,double __p) param_type() argument 218 double __p; global() variable [all...] |
H A D | discrete_distribution.h | 90 _LIBCPP_HIDE_FROM_ABI explicit discrete_distribution(const param_type& __p) : __p_(__p) {} 99 _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g, const param_type& __p); in discrete_distribution() 105 _LIBCPP_HIDE_FROM_ABI void param(const param_type& __p) { __p_ = __p; } in discrete_distribution() 160 vector<double> __p(__n + 1); in param_type() 161 std::adjacent_difference(__p_.begin(), __p_.end(), __p.begin()); in param_type() 163 __p[__n] = 1 - __p_[__n - 1]; in param_type() 165 __p[0] = 1; in param_type() 166 return __p; in param_type() 108 discrete_distribution(const param_type & __p) discrete_distribution() argument 128 param(const param_type & __p) param() argument [all...] |
/freebsd/contrib/llvm-project/libcxx/include/__string/ |
H A D | char_traits.h | 356 __str_find(const _CharT* __p, _SizeT __sz, _CharT __c, _SizeT __pos) _NOEXCEPT { 359 const _CharT* __r = _Traits::find(__p + __pos, __sz - __pos, __c); 362 return static_cast<_SizeT>(__r - __p); 405 __str_find(const _CharT* __p, _SizeT __sz, const _CharT* __s, _SizeT __pos, _SizeT __n) _NOEXCEPT { 412 …const _CharT* __r = std::__search_substring<_CharT, _Traits>(__p + __pos, __p + __sz, __s, __s + _… 414 if (__r == __p + __sz) 416 return static_cast<_SizeT>(__r - __p); 423 __str_rfind(const _CharT* __p, _SizeT __sz, _CharT __c, _SizeT __pos) _NOEXCEPT { 430 for (const _CharT* __ps = __p + __pos; __ps != __p;) { 432 return static_cast<_SizeT>(__ps - __p); [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | cetintrin.h | 81 static __inline__ void __DEFAULT_FN_ATTRS _rstorssp(void * __p) { in _rstorssp() argument 82 __builtin_ia32_rstorssp(__p); in _rstorssp() 85 static __inline__ void __DEFAULT_FN_ATTRS _wrssd(unsigned int __a, void * __p) { in _wrssd() argument 86 __builtin_ia32_wrssd(__a, __p); in _wrssd() 90 static __inline__ void __DEFAULT_FN_ATTRS _wrssq(unsigned long long __a, void * __p) { in _wrssq() argument 91 __builtin_ia32_wrssq(__a, __p); in _wrssq() 95 static __inline__ void __DEFAULT_FN_ATTRS _wrussd(unsigned int __a, void * __p) { in _wrussd() argument 96 __builtin_ia32_wrussd(__a, __p); in _wrussd() 100 static __inline__ void __DEFAULT_FN_ATTRS _wrussq(unsigned long long __a, void * __p) { in _wrussq() argument 101 __builtin_ia32_wrussq(__a, __p); in _wrussq() [all …]
|
H A D | fxsrintrin.h | 30 _fxsave(void *__p) in _fxsave() argument 32 __builtin_ia32_fxsave(__p); in _fxsave() 48 _fxrstor(void *__p) in _fxrstor() argument 50 __builtin_ia32_fxrstor(__p); in _fxrstor() 65 _fxsave64(void *__p) in _fxsave64() argument 67 __builtin_ia32_fxsave64(__p); in _fxsave64() 83 _fxrstor64(void *__p) in _fxrstor64() argument 85 __builtin_ia32_fxrstor64(__p); in _fxrstor64()
|
H A D | xsavesintrin.h | 21 _xsaves(void *__p, unsigned long long __m) { in _xsaves() argument 22 __builtin_ia32_xsaves(__p, __m); in _xsaves() 26 _xrstors(void *__p, unsigned long long __m) { in _xrstors() argument 27 __builtin_ia32_xrstors(__p, __m); in _xrstors() 32 _xrstors64(void *__p, unsigned long long __m) { in _xrstors64() argument 33 __builtin_ia32_xrstors64(__p, __m); in _xrstors64() 37 _xsaves64(void *__p, unsigned long long __m) { in _xsaves64() argument 38 __builtin_ia32_xsaves64(__p, __m); in _xsaves64()
|
H A D | xsaveintrin.h | 25 _xsave(void *__p, unsigned long long __m) { in _xsave() argument 26 __builtin_ia32_xsave(__p, __m); in _xsave() 30 _xrstor(void *__p, unsigned long long __m) { in _xrstor() argument 31 __builtin_ia32_xrstor(__p, __m); in _xrstor() 50 _xsave64(void *__p, unsigned long long __m) { in _xsave64() argument 51 __builtin_ia32_xsave64(__p, __m); in _xsave64() 55 _xrstor64(void *__p, unsigned long long __m) { in _xrstor64() argument 56 __builtin_ia32_xrstor64(__p, __m); in _xrstor64()
|
H A D | rdseedintrin.h | 42 _rdseed16_step(unsigned short *__p) in _rdseed16_step() argument 44 return (int) __builtin_ia32_rdseed16_step(__p); in _rdseed16_step() 69 _rdseed32_step(unsigned int *__p) in _rdseed32_step() argument 71 return (int) __builtin_ia32_rdseed32_step(__p); in _rdseed32_step() 97 _rdseed64_step(unsigned long long *__p) in _rdseed64_step() argument 99 return (int) __builtin_ia32_rdseed64_step(__p); in _rdseed64_step()
|
/freebsd/contrib/llvm-project/libcxx/include/__charconv/ |
H A D | from_chars_integral.h | 107 auto __p = __find_non_zero(__first, __last); in __subject_seq_combinator() local 108 if (__p == __last || !std::__in_pattern(*__p, __args...)) { in __subject_seq_combinator() 109 if (__p == __first) in __subject_seq_combinator() 113 return {__p, {}}; in __subject_seq_combinator() 117 auto __r = __f(__p, __last, __value, __args...); in __subject_seq_combinator() 137 auto __p = __tx::__read(__f, __l, __a, __b); in __from_chars_atoi() 138 if (__p == __l || !std::__in_pattern(*__p)) { in __from_chars_atoi() 142 return {__p, {}}; in __from_chars_atoi() 145 return {__p, errc::result_out_of_range}; in __from_chars_atoi() 184 [](const char* __p, const char* __lastp, _Tp& __val, int __b) -> from_chars_result { in __from_chars_integral() [all …]
|
H A D | traits.h | 56 static _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI char* __convert(char* __p, _Tp __v) { 57 return __itoa::__base_10_u32(__p, __v); 82 static _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI char* __convert(char* __p, _Tp __v) { 83 return __itoa::__base_10_u64(__p, __v); 114 static _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI char* __convert(char* __p, _Tp __v) { 115 return __itoa::__base_10_u128(__p, __v); 161 __read(char const* __p, char const* __ep, type& __a, type& __b) { 166 if (*__p < '0' || *__p > '9') 168 __cprod[--__i] = *__p++ - '0'; 169 } while (__p != __ep && __i != 0); [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | stable_partition.h | 40 _Pair __p, in __stable_partition_impl() 56 if (__len <= __p.second) { // The buffer is big enough to use in __stable_partition_impl() 59 unique_ptr<value_type, __destruct_n&> __h(__p.first, __d); in __stable_partition_impl() 62 value_type* __t = __p.first; in __stable_partition_impl() 80 for (value_type* __t2 = __p.first; __t2 < __t; ++__t2, (void)++__i) in __stable_partition_impl() 94 std::__stable_partition_impl<_AlgPolicy, _Predicate&>(__first, __m, __pred, __len2, __p, __fit); in __stable_partition_impl() 108 __second_false = std::__stable_partition_impl<_AlgPolicy, _Predicate&>(__m1, __last, __pred, __len_half, __p, __fit); in __stable_partition_impl() 135 pair<value_type*, ptrdiff_t> __p(0, 0); in __stable_partition_impl() 140 __p = std::get_temporary_buffer<value_type>(__len); in __stable_partition_impl() 142 __h.reset(__p in __stable_partition_impl() 34 __stable_partition_impl(_ForwardIterator __first,_ForwardIterator __last,_Predicate __pred,_Distance __len,_Pair __p,forward_iterator_tag __fit) __stable_partition_impl() argument 147 __p = _VSTD::get_temporary_buffer<value_type>(__len); __stable_partition_impl() local 158 __stable_partition_impl(_BidirectionalIterator __first,_BidirectionalIterator __last,_Predicate __pred,_Distance __len,_Pair __p,bidirectional_iterator_tag __bit) __stable_partition_impl() argument 301 __p = _VSTD::get_temporary_buffer<value_type>(__len); __stable_partition_impl() local [all...] |
/freebsd/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/ |
H A D | bmi2intrin.h | 57 unsigned long __p; in _pdep_u64() local 62 __p = 64 - __builtin_popcountl(__M); in _pdep_u64() 68 __t = __X << (__p - __c); in _pdep_u64() 71 __p++; in _pdep_u64() 79 unsigned long __p = 0x4040404040404040UL; // initial bit permute control in _pext_u64() local 94 __p = (__p << 8) | __c; in _pext_u64() 97 __result = __builtin_bpermd(__p, __X); in _pext_u64() 99 __p = 64 - __builtin_popcountl(__M); in _pext_u64() 109 __t = (__X & (__mask >> __c)) >> (__p - __c); in _pext_u64() 112 __p++; in _pext_u64()
|
/freebsd/contrib/llvm-project/libcxx/include/__debug_utils/ |
H A D | strict_weak_ordering_check.h | 39 __diff_t __p = 0; in __check_strict_weak_ordering_sorted() local 40 while (__p < __size) { in __check_strict_weak_ordering_sorted() 41 __diff_t __q = __p + __diff_t(1); in __check_strict_weak_ordering_sorted() 42 // Find first element that is greater than *(__first+__p). in __check_strict_weak_ordering_sorted() 43 while (__q < __size && !__comp(*(__first + __p), *(__first + __q))) { in __check_strict_weak_ordering_sorted() 46 // Check that the elements from __p to __q are equal between each other. in __check_strict_weak_ordering_sorted() 47 for (__diff_t __b = __p; __b < __q; ++__b) { in __check_strict_weak_ordering_sorted() 48 for (__diff_t __a = __p; __a <= __b; ++__a) { in __check_strict_weak_ordering_sorted() 55 // Check that elements between __p and __q are less than between __q and __size. in __check_strict_weak_ordering_sorted() 56 for (__diff_t __a = __p; __ in __check_strict_weak_ordering_sorted() [all...] |
/freebsd/contrib/llvm-project/libcxx/include/__memory_resource/ |
H A D | polymorphic_allocator.h | 70 _LIBCPP_HIDE_FROM_ABI void deallocate(_ValueType* __p, size_t __n) { in deallocate() argument 75 __res_->deallocate(__p, __n * sizeof(_ValueType), alignof(_ValueType)); in deallocate() 119 _LIBCPP_HIDE_FROM_ABI void construct(_Tp* __p, _Ts&&... __args) { in construct() argument 122 __p, in construct() 129 …construct(pair<_T1, _T2>* __p, piecewise_construct_t, tuple<_Args1...> __x, tuple<_Args2...> __y) { in construct() argument 130 ::new ((void*)__p) pair<_T1, _T2>( in construct() 141 _LIBCPP_HIDE_FROM_ABI void construct(pair<_T1, _T2>* __p) { in construct() argument 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() argument 147 construct(__p, in construct() [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__thread/ |
H A D | thread.h | 84 void set_pointer(pointer __p); 88 void _LIBCPP_TLS_DESTRUCTOR_CC __thread_specific_ptr<_Tp>::__at_thread_exit(void* __p) { in __at_thread_exit() argument 89 delete static_cast<pointer>(__p); in __at_thread_exit() 108 void __thread_specific_ptr<_Tp>::set_pointer(pointer __p) { in set_pointer() argument 110 std::__libcpp_tls_set(__key_, __p); in set_pointer() 198 unique_ptr<_Fp> __p(static_cast<_Fp*>(__vp)); 199 __thread_local_data().set_pointer(std::get<0>(*__p.get()).release()); 201 std::__thread_execute(*__p.get(), _Index()); 210 …unique_ptr<_Gp> __p(new _Gp(std::move(__tsp), std::forward<_Fp>(__f), std::forward<_Args>(__args).… 211 int __ec = std::__libcpp_thread_create(&__t_, &__thread_proxy<_Gp>, __p.get()); [all …]
|