/freebsd/contrib/llvm-project/libcxx/include/__functional/ |
H A D | function.h | 146 __compressed_pair<_Fp, _Ap> __f_; 152 _LIBCPP_HIDE_FROM_ABI const _Target& __target() const { return __f_.first(); } 155 _LIBCPP_HIDE_FROM_ABI const _Alloc& __get_allocator() const { return __f_.second(); } 158 : __f_(piecewise_construct, std::forward_as_tuple(std::move(__f)), std::forward_as_tuple()) {} 161 : __f_(piecewise_construct, std::forward_as_tuple(__f), std::forward_as_tuple(__a)) {} 164 … : __f_(piecewise_construct, std::forward_as_tuple(__f), std::forward_as_tuple(std::move(__a))) {} 167 …: __f_(piecewise_construct, std::forward_as_tuple(std::move(__f)), std::forward_as_tuple(std::move… 171 return _Invoker::__call(__f_.first(), std::forward<_ArgTypes>(__arg)...); 177 _AA __a(__f_.second()); 180 ::new ((void*)__hold.get()) __alloc_func(__f_.first(), _Alloc(__a)); [all …]
|
H A D | pointer_to_unary_function.h | 27 _Result (*__f_)(_Arg); variable 30 _LIBCPP_HIDE_FROM_ABI explicit pointer_to_unary_function(_Result (*__f)(_Arg)) : __f_(__f) {} in pointer_to_unary_function() 31 _LIBCPP_HIDE_FROM_ABI _Result operator()(_Arg __x) const { return __f_(__x); } in operator()
|
H A D | mem_fn.h | 32 type __f_; 35 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 __mem_fn(type __f) _NOEXCEPT : __f_(__f) {} in __mem_fn() 43 return std::__invoke(__f_, std::forward<_ArgTypes>(__args)...); in operator()
|
H A D | pointer_to_binary_function.h | 27 _Result (*__f_)(_Arg1, _Arg2); variable 30 …_LIBCPP_HIDE_FROM_ABI explicit pointer_to_binary_function(_Result (*__f)(_Arg1, _Arg2)) : __f_(__f… in pointer_to_binary_function() 31 _LIBCPP_HIDE_FROM_ABI _Result operator()(_Arg1 __x, _Arg2 __y) const { return __f_(__x, __y); } in operator()
|
H A D | reference_wrapper.h | 39 type* __f_; 51 __f_ = std::addressof(__f); in reference_wrapper() 55 …BCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 operator type&() const _NOEXCEPT { return *__f_; } 56 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 type& get() const _NOEXCEPT { return *__f_; } in get()
|
H A D | bind.h | 206 _Fd __f_; 218 : __f_(std::forward<_Gp>(__f)), __bound_args_(std::forward<_BA>(__bound_args)...) {} 223 …return std::__apply_functor(__f_, __bound_args_, __indices(), tuple<_Args&&...>(std::forward<_Args… 230 …return std::__apply_functor(__f_, __bound_args_, __indices(), tuple<_Args&&...>(std::forward<_Args…
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | future | 1402 __compressed_pair<_Fp, _Alloc> __f_; 1405 …_LIBCPP_HIDE_FROM_ABI explicit __packaged_task_func(const _Fp& __f) : __f_(__f, __default_init_tag… 1406 …_LIBCPP_HIDE_FROM_ABI explicit __packaged_task_func(_Fp&& __f) : __f_(std::move(__f), __default_in… 1407 _LIBCPP_HIDE_FROM_ABI __packaged_task_func(const _Fp& __f, const _Alloc& __a) : __f_(__f, __a) {} 1408 …_LIBCPP_HIDE_FROM_ABI __packaged_task_func(_Fp&& __f, const _Alloc& __a) : __f_(std::move(__f), __… 1418 ::new ((void*)__p) __packaged_task_func(std::move(__f_.first()), std::move(__f_.second())); 1423 __f_.~__compressed_pair<_Fp, _Alloc>(); 1431 _Ap __a(__f_.second()); 1432 __f_.~__compressed_pair<_Fp, _Alloc>(); 1438 return std::__invoke(__f_.first(), std::forward<_ArgTypes>(__arg)...); [all …]
|
H A D | valarray | 508 _Fp __f_; 513 _LIBCPP_HIDE_FROM_ABI explicit __apply_expr(_Fp __f) : __f_(__f) {} 515 _LIBCPP_HIDE_FROM_ABI _Tp operator()(const _Tp& __x) const { return __f_(__x); }
|
/freebsd/contrib/llvm-project/libcxx/src/ |
H A D | random.cpp | 69 random_device::random_device(const string& __token) : __f_(open(__token.c_str(), O_RDONLY)) { 70 if (__f_ < 0) 74 random_device::~random_device() { close(__f_); } 81 ssize_t s = read(__f_, p, n); 164 if (::ioctl(__f_, RNDGETENTCNT, &ent) < 0) in entropy()
|
/freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
H A D | hh_mm_ss.h | 60 __f_(chrono::duration_cast<precision>(chrono::abs(__d) - hours() - minutes() - seconds())) {} in hh_mm_ss() 66 _LIBCPP_HIDE_FROM_ABI constexpr precision subseconds() const noexcept { return __f_; } 69 auto __dur = __h_ + __m_ + __s_ + __f_; in minutes() 80 precision __f_; 86 precision __f_; global() variable
|
/freebsd/contrib/llvm-project/libcxx/include/__random/ |
H A D | random_device.h | 28 int __f_; 37 int __padding_; // padding to fake the `__f_` field above 29 int __f_; global() variable
|