/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | inout_ptr.h | 42 : __s_(__smart), __a_(std::forward<_Args>(__args)...), __p_([&__smart] { in inout_ptr_t() 49 if constexpr (requires { __s_.release(); }) { 50 __s_.release(); 52 __s_ = _Smart(); 68 …std::apply([&](auto&&... __args) { __s_ = _Smart(static_cast<_SmartPtr>(__p_), std::forward<_Args>… in ~inout_ptr_t() 71 …std::apply([&](auto&&... __args) { __s_.reset(static_cast<_SmartPtr>(__p_), std::forward<_Args>(__… in ~inout_ptr_t() 76 …std::apply([&](auto&&... __args) { __s_ = _Smart(static_cast<_SmartPtr>(__p_), std::forward<_Args>… in ~inout_ptr_t() 92 _Smart& __s_;
|
H A D | out_ptr.h | 42 : __s_(__smart), __a_(std::forward<_Args>(__args)...), __p_() { in out_ptr_t() 45 __s_.reset(); in out_ptr_t() 47 __s_ = _Smart(); in out_ptr_t() 63 …std::apply([&](auto&&... __args) { __s_.reset(static_cast<_SmartPtr>(__p_), std::forward<_Args>(__… in ~out_ptr_t() 68 …std::apply([&](auto&&... __args) { __s_ = _Smart(static_cast<_SmartPtr>(__p_), std::forward<_Args>… in ~out_ptr_t() 84 _Smart& __s_;
|
H A D | allocator_destructor.h | 31 size_type __s_; 34 _LIBCPP_HIDE_FROM_ABI __allocator_destructor(_Alloc& __a, size_type __s) _NOEXCEPT : __alloc_(__a), __s_(__s) {} in __allocator_destructor() 35 _LIBCPP_HIDE_FROM_ABI void operator()(pointer __p) _NOEXCEPT { __alloc_traits::deallocate(__alloc_, __p, __s_); } 30 size_type __s_; global() variable
|
/freebsd/contrib/llvm-project/libcxx/include/experimental/__simd/ |
H A D | simd.h | 35 _Storage __s_; variable 49 …_LIBCPP_HIDE_FROM_ABI simd(_Up&& __v) noexcept : __s_(_Impl::__broadcast(static_cast<value_type>(_… in simd() 65 : __s_(_Impl::__generate(std::forward<_Generator>(__g))) {} in simd() 70 _Impl::__load(__s_, _Flags::template __apply<simd>(__mem)); in simd() 76 _Impl::__load(__s_, _Flags::template __apply<simd>(__mem)); in copy_from() 81 _Impl::__store(__s_, _Flags::template __apply<simd>(__mem)); in copy_to() 85 _LIBCPP_HIDE_FROM_ABI reference operator[](size_t __i) noexcept { return reference(__s_, __i); } 86 _LIBCPP_HIDE_FROM_ABI value_type operator[](size_t __i) const noexcept { return __s_.__get(__i); }
|
H A D | simd_mask.h | 32 _Storage __s_; variable 45 …_LIBCPP_HIDE_FROM_ABI explicit simd_mask(value_type __v) noexcept : __s_(_Impl::__broadcast(__v)) … in simd_mask() 58 _Impl::__load(__s_, _Flags::template __apply<simd_mask>(__mem)); in simd_mask() 64 _Impl::__load(__s_, _Flags::template __apply<simd_mask>(__mem)); in copy_from() 69 _Impl::__store(__s_, _Flags::template __apply<simd_mask>(__mem)); in copy_to() 73 _LIBCPP_HIDE_FROM_ABI reference operator[](size_t __i) noexcept { return reference(__s_, __i); } 74 _LIBCPP_HIDE_FROM_ABI value_type operator[](size_t __i) const noexcept { return __s_.__get(__i); }
|
H A D | reference.h | 35 _Storage& __s_; variable 38 _LIBCPP_HIDE_FROM_ABI __simd_reference(_Storage& __s, size_t __idx) : __s_(__s), __idx_(__idx) {} in __simd_reference() 40 _LIBCPP_HIDE_FROM_ABI _Vp __get() const noexcept { return __s_.__get(__idx_); } in __get() 44 __s_.__set(__idx_, experimental::__set_all_bits<_Tp>(__v)); in __set() 46 __s_.__set(__idx_, __v); in __set() 60 return {__s_, __idx_};
|
/freebsd/contrib/llvm-project/libcxx/include/__random/ |
H A D | lognormal_distribution.h | 39 result_type __s_; 44 _LIBCPP_HIDE_FROM_ABI explicit param_type(result_type __m = 0, result_type __s = 1) : __m_(__m), __s_(__s) {} 47 _LIBCPP_HIDE_FROM_ABI result_type s() const { return __s_; } 50 return __x.__m_ == __y.__m_ && __x.__s_ == __y.__s_; 37 result_type __s_; global() variable
|
H A D | poisson_distribution.h | 41 double __s_; 112 __s_ = 0; 122 __s_ = std::sqrt(__mean_); 125 __omega_ = .3989423 / __s_; in param_type() 148 double __g = __pr.__mean_ + __pr.__s_ * normal_distribution<double>()(__urng); in param_type() 170 __tx = std::trunc(__pr.__mean_ + __pr.__s_ * __t); in operator() 197 double __r = (0.5 - __difmuk) / __pr.__s_; in operator() 42 double __s_; global() variable
|
/freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
H A D | hh_mm_ss.h | 59 __s_(chrono::duration_cast<chrono::seconds>(chrono::abs(__d) - hours() - minutes())), in hh_mm_ss() 65 _LIBCPP_HIDE_FROM_ABI constexpr chrono::seconds seconds() const noexcept { return __s_; } in hh_mm_ss() 69 auto __dur = __h_ + __m_ + __s_ + __f_; in minutes() 79 chrono::seconds __s_; in precision() 85 chrono::seconds __s_; global() variable
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | any | 311 _Storage __s_; 342 _Tp* __ret = static_cast<_Tp*>(static_cast<void*>(&__dest.__s_.__buf)); 353 _Tp* __p = static_cast<_Tp*>(static_cast<void*>(&__this.__s_.__buf)); 359 …_SmallHandler::__create(__dest, *static_cast<_Tp const*>(static_cast<void const*>(&__this.__s_.__b… 363 …_SmallHandler::__create(__dest, std::move(*static_cast<_Tp*>(static_cast<void*>(&__this.__s_.__buf… 369 return static_cast<void*>(&__this.__s_.__buf); 413 __dest.__s_.__ptr = __hold.release(); 423 _Tp* __p = static_cast<_Tp*>(__this.__s_.__ptr); 430 _LargeHandler::__create(__dest, *static_cast<_Tp const*>(__this.__s_.__ptr)); 434 __dest.__s_.__ptr = __this.__s_.__ptr; [all …]
|
H A D | valarray | 471 size_t __s_; 474 …_LIBCPP_HIDE_FROM_ABI explicit __scalar_expr(const value_type& __t, size_t __s) : __t_(__t), __s_(… 478 _LIBCPP_HIDE_FROM_ABI size_t size() const { return __s_; }
|