Searched refs:__f_ (Results 1 – 11 of 11) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/libcxx/include/__functional/ |
| D | function.h | 126 __compressed_pair<_Fp, _Ap> __f_; 133 const _Target& __target() const { return __f_.first(); } 137 const _Alloc& __get_allocator() const { return __f_.second(); } 141 : __f_(piecewise_construct, _VSTD::forward_as_tuple(_VSTD::move(__f)), 148 : __f_(piecewise_construct, _VSTD::forward_as_tuple(__f), 155 : __f_(piecewise_construct, _VSTD::forward_as_tuple(__f), 162 : __f_(piecewise_construct, _VSTD::forward_as_tuple(_VSTD::move(__f)), 171 return _Invoker::__call(__f_.first(), 182 _AA __a(__f_.second()); 185 ::new ((void*)__hold.get()) __alloc_func(__f_.first(), _Alloc(__a)); [all …]
|
| D | mem_fn.h | 35 type __f_; 39 __mem_fn(type __f) _NOEXCEPT : __f_(__f) {} in __mem_fn() 47 return _VSTD::__invoke(__f_, _VSTD::forward<_ArgTypes>(__args)...); in operator() 55 return _VSTD::__invoke(__f_, __a0); in operator() 62 return _VSTD::__invoke(__f_, __a0); in operator() 69 return _VSTD::__invoke(__f_, __a0, __a1); in operator() 76 return _VSTD::__invoke(__f_, __a0, __a1); in operator() 83 return _VSTD::__invoke(__f_, __a0, __a1); in operator() 90 return _VSTD::__invoke(__f_, __a0, __a1); in operator() 97 return _VSTD::__invoke(__f_, __a0, __a1, __a2); in operator() [all …]
|
| D | pointer_to_unary_function.h | 28 _Result (*__f_)(_Arg); variable 31 : __f_(__f) {} in pointer_to_unary_function() 33 {return __f_(__x);} in operator()
|
| D | pointer_to_binary_function.h | 28 _Result (*__f_)(_Arg1, _Arg2); variable 31 : __f_(__f) {} in pointer_to_binary_function() 33 {return __f_(__x, __y);} in operator()
|
| D | reference_wrapper.h | 35 type* __f_; 47 : __f_(_VSTD::addressof(__f)) {} in reference_wrapper() 53 __f_ = _VSTD::addressof(__f); 59 operator type&() const _NOEXCEPT {return *__f_;} 61 type& get() const _NOEXCEPT {return *__f_;} in get()
|
| D | bind.h | 270 _Fd __f_; 284 : __f_(_VSTD::forward<_Gp>(__f)), 292 return _VSTD::__apply_functor(__f_, __bound_args_, __indices(), 301 return _VSTD::__apply_functor(__f_, __bound_args_, __indices(),
|
| /freebsd-12-stable/contrib/llvm-project/libcxx/include/ |
| D | future | 1638 __compressed_pair<_Fp, _Alloc> __f_; 1641 explicit __packaged_task_func(const _Fp& __f) : __f_(__f, __default_init_tag()) {} 1643 explicit __packaged_task_func(_Fp&& __f) : __f_(_VSTD::move(__f), __default_init_tag()) {} 1646 : __f_(__f, __a) {} 1649 : __f_(_VSTD::move(__f), __a) {} 1661 ::new ((void*)__p) __packaged_task_func(_VSTD::move(__f_.first()), _VSTD::move(__f_.second())); 1668 __f_.~__compressed_pair<_Fp, _Alloc>(); 1678 _Ap __a(__f_.second()); 1679 __f_.~__compressed_pair<_Fp, _Alloc>(); 1687 return _VSTD::__invoke(__f_.first(), _VSTD::forward<_ArgTypes>(__arg)...); [all …]
|
| D | mutex | 613 _Fp& __f_; 616 explicit __call_once_param(_Fp& __f) : __f_(__f) {} 630 … _VSTD::__invoke(_VSTD::get<0>(_VSTD::move(__f_)), _VSTD::get<_Indices>(_VSTD::move(__f_))...); 639 _Fp& __f_; 642 explicit __call_once_param(_Fp& __f) : __f_(__f) {} 647 __f_();
|
| D | valarray | 512 _Fp __f_; 517 explicit __apply_expr(_Fp __f) : __f_(__f) {} 521 {return __f_(__x);}
|
| D | random | 3597 int __f_;
|
| /freebsd-12-stable/contrib/llvm-project/libcxx/src/ |
| D | random.cpp | 88 : __f_(open(__token.c_str(), O_RDONLY)) 90 if (__f_ < 0) 96 close(__f_); 107 ssize_t s = read(__f_, p, n); 182 if (::ioctl(__f_, RNDGETENTCNT, &ent) < 0) in entropy()
|