| /freebsd-12-stable/contrib/llvm-project/libcxx/include/__functional/ |
| D | function.h | 103 bool __not_null(function<_Fp> const& __f) { return !!__f; } 140 explicit __alloc_func(_Target&& __f) 141 : __f_(piecewise_construct, _VSTD::forward_as_tuple(_VSTD::move(__f)), 147 explicit __alloc_func(const _Target& __f, const _Alloc& __a) 148 : __f_(piecewise_construct, _VSTD::forward_as_tuple(__f), 154 explicit __alloc_func(const _Target& __f, _Alloc&& __a) 155 : __f_(piecewise_construct, _VSTD::forward_as_tuple(__f), 161 explicit __alloc_func(_Target&& __f, _Alloc&& __a) 162 : __f_(piecewise_construct, _VSTD::forward_as_tuple(_VSTD::move(__f)), 192 static void __destroy_and_delete(__alloc_func* __f) { [all …]
|
| D | invoke.h | 34 static _Ret __call(_Fn __f) { 35 return _VSTD::__invoke(__f); 39 static _Ret __call(_Fn __f, _A0& __a0) { 40 return _VSTD::__invoke(__f, __a0); 44 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) { 45 return _VSTD::__invoke(__f, __a0, __a1); 49 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){ 50 return _VSTD::__invoke(__f, __a0, __a1, __a2); 65 static void __call(_Fn __f) { 66 _VSTD::__invoke(__f); [all …]
|
| D | mem_fun_ref.h | 52 mem_fun(_Sp (_Tp::*__f)()) in mem_fun() argument 53 {return mem_fun_t<_Sp,_Tp>(__f);} in mem_fun() 58 mem_fun(_Sp (_Tp::*__f)(_Ap)) in mem_fun() 59 {return mem_fun1_t<_Sp,_Tp,_Ap>(__f);} in mem_fun() 88 mem_fun_ref(_Sp (_Tp::*__f)()) in mem_fun_ref() argument 89 {return mem_fun_ref_t<_Sp,_Tp>(__f);} in mem_fun_ref() 94 mem_fun_ref(_Sp (_Tp::*__f)(_Ap)) in mem_fun_ref() 95 {return mem_fun1_ref_t<_Sp,_Tp,_Ap>(__f);} in mem_fun_ref() 124 mem_fun(_Sp (_Tp::*__f)() const) in mem_fun() 125 {return const_mem_fun_t<_Sp,_Tp>(__f);} in mem_fun() [all …]
|
| D | weak_result_type.h | 327 __invoke(_Fn __f, _T1& __t1) { 328 return (__t1.*__f)(); 334 __invoke(_Fn __f, _T1& __t1, _A0& __a0) { 335 return (__t1.*__f)(__a0); 341 __invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1) { 342 return (__t1.*__f)(__a0, __a1); 348 __invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1, _A2& __a2) { 349 return (__t1.*__f)(__a0, __a1, __a2); 355 __invoke(_Fn __f, _T1& __t1) { 356 return ((*__t1).*__f)(); [all …]
|
| D | pointer_to_unary_function.h | 30 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_unary_function(_Result (*__f)(_Arg)) in pointer_to_unary_function() 31 : __f_(__f) {} in pointer_to_unary_function() 39 ptr_fun(_Result (*__f)(_Arg)) in ptr_fun() 40 {return pointer_to_unary_function<_Arg,_Result>(__f);} in ptr_fun()
|
| D | default_searcher.h | 32 default_searcher(_ForwardIterator __f, _ForwardIterator __l, 34 : __first_(__f), __last_(__l), __pred_(__p) {} in __first_() argument 39 operator () (_ForwardIterator2 __f, _ForwardIterator2 __l) const in operator() 41 return _VSTD::__search(__f, __l, __first_, __last_, __pred_, in operator()
|
| D | pointer_to_binary_function.h | 30 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_binary_function(_Result (*__f)(_Arg1, _Arg2)) in pointer_to_binary_function() 31 : __f_(__f) {} in pointer_to_binary_function() 39 ptr_fun(_Result (*__f)(_Arg1,_Arg2)) in ptr_fun() 40 {return pointer_to_binary_function<_Arg1,_Arg2,_Result>(__f);} in ptr_fun()
|
| /freebsd-12-stable/contrib/libstdc++/include/std/ |
| D | std_iomanip.h | 72 operator>>(basic_istream<_CharT,_Traits>& __is, _Resetiosflags __f) 74 __is.setf(ios_base::fmtflags(0), __f._M_mask); 80 operator<<(basic_ostream<_CharT,_Traits>& __os, _Resetiosflags __f) 82 __os.setf(ios_base::fmtflags(0), __f._M_mask); 106 operator>>(basic_istream<_CharT,_Traits>& __is, _Setiosflags __f) 108 __is.setf(__f._M_mask); 114 operator<<(basic_ostream<_CharT,_Traits>& __os, _Setiosflags __f) 116 __os.setf(__f._M_mask); 141 operator>>(basic_istream<_CharT,_Traits>& __is, _Setbase __f) 143 __is.setf(__f._M_base == 8 ? ios_base::oct : [all …]
|
| /freebsd-12-stable/contrib/llvm-project/libcxx/include/experimental/ |
| D | functional | 116 default_searcher(_ForwardIterator __f, _ForwardIterator __l, 118 : __first_(__f), __last_(__l), __pred_(__p) {} 123 operator () (_ForwardIterator2 __f, _ForwardIterator2 __l) const 125 return _VSTD::__search(__f, __l, __first_, __last_, __pred_, 139 make_default_searcher( _ForwardIterator __f, _ForwardIterator __l, _BinaryPredicate __p = _BinaryPr… 141 return default_searcher<_ForwardIterator, _BinaryPredicate>(__f, __l, __p); 223 boyer_moore_searcher(_RandomAccessIterator1 __f, _RandomAccessIterator1 __l, 225 : __first_(__f), __last_(__l), __pred_(__pred), 231 for ( difference_type __i = 0; __f != __l; ++__f, (void) ++__i ) 232 __skip_->insert(*__f, __i); [all …]
|
| /freebsd-12-stable/contrib/llvm-project/libcxx/include/__memory/ |
| D | uninitialized_algorithms.h | 30 uninitialized_copy(_InputIterator __f, _InputIterator __l, _ForwardIterator __r) in uninitialized_copy() argument 38 for (; __f != __l; ++__f, (void) ++__r) in uninitialized_copy() 39 ::new ((void*)_VSTD::addressof(*__r)) value_type(*__f); in uninitialized_copy() 54 uninitialized_copy_n(_InputIterator __f, _Size __n, _ForwardIterator __r) in uninitialized_copy_n() argument 62 for (; __n > 0; ++__f, (void) ++__r, (void) --__n) in uninitialized_copy_n() 63 ::new ((void*)_VSTD::addressof(*__r)) value_type(*__f); in uninitialized_copy_n() 78 uninitialized_fill(_ForwardIterator __f, _ForwardIterator __l, const _Tp& __x) in uninitialized_fill() argument 82 _ForwardIterator __s = __f; in uninitialized_fill() 86 for (; __f != __l; ++__f) in uninitialized_fill() 87 ::new ((void*)_VSTD::addressof(*__f)) value_type(__x); in uninitialized_fill() [all …]
|
| /freebsd-12-stable/contrib/libstdc++/include/c_std/ |
| D | std_cmath.h | 468 __capture_fpclassify(_Tp __f) { return fpclassify(__f); } in _GLIBCXX_BEGIN_NAMESPACE() 472 __capture_isfinite(_Tp __f) { return isfinite(__f); } in __capture_isfinite() argument 476 __capture_isinf(_Tp __f) { return isinf(__f); } in __capture_isinf() argument 480 __capture_isnan(_Tp __f) { return isnan(__f); } in __capture_isnan() argument 484 __capture_isnormal(_Tp __f) { return isnormal(__f); } in __capture_isnormal() argument 488 __capture_signbit(_Tp __f) { return signbit(__f); } in __capture_signbit() argument 539 fpclassify(_Tp __f) { return ::__gnu_cxx::__capture_fpclassify(__f); } in _GLIBCXX_BEGIN_NAMESPACE() 543 isfinite(_Tp __f) { return ::__gnu_cxx::__capture_isfinite(__f); } in isfinite() argument 547 isinf(_Tp __f) { return ::__gnu_cxx::__capture_isinf(__f); } in isinf() argument 551 isnan(_Tp __f) { return ::__gnu_cxx::__capture_isnan(__f); } in isnan() argument [all …]
|
| /freebsd-12-stable/include/xlocale/ |
| D | _ctype.h | 74 __maskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc); 76 __istype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc); 79 __maskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc) in __maskrune_l() argument 84 runes->__runetype[__c]) & __f; in __maskrune_l() 88 __istype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc) in __istype_l() argument 90 return (!!__maskrune_l(__c, __f, __loc)); in __istype_l() 99 __sbmaskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc); 101 __sbistype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc); 104 __sbmaskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc) in __sbmaskrune_l() argument 109 runes->__runetype[__c] & __f; in __sbmaskrune_l() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/libcxx/include/ |
| D | future | 848 explicit __deferred_assoc_state(_Fp&& __f); 855 __deferred_assoc_state<_Rp, _Fp>::__deferred_assoc_state(_Fp&& __f) 856 : __func_(_VSTD::forward<_Fp>(__f)) 889 explicit __deferred_assoc_state(_Fp&& __f); 896 __deferred_assoc_state<void, _Fp>::__deferred_assoc_state(_Fp&& __f) 897 : __func_(_VSTD::forward<_Fp>(__f)) 932 explicit __async_assoc_state(_Fp&& __f); 939 __async_assoc_state<_Rp, _Fp>::__async_assoc_state(_Fp&& __f) 940 : __func_(_VSTD::forward<_Fp>(__f)) 981 explicit __async_assoc_state(_Fp&& __f); [all …]
|
| D | deque | 196 copy(_RAIter __f, 204 copy(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 211 copy(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 218 copy_backward(_RAIter __f, 226 copy_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 233 copy_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 240 move(_RAIter __f, 248 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 255 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 262 move_backward(_RAIter __f, [all …]
|
| D | list | 596 static void __unlink_nodes(__link_pointer __f, __link_pointer __l) _NOEXCEPT; 704 // Unlink nodes [__f, __l] 708 __list_imp<_Tp, _Alloc>::__unlink_nodes(__link_pointer __f, __link_pointer __l) 711 __f->__prev_->__next_ = __l->__next_; 712 __l->__next_->__prev_ = __f->__prev_; 755 __link_pointer __f = __end_.__next_; 757 __unlink_nodes(__f, __l->__prev_); 759 while (__f != __l) 761 __node_pointer __np = __f->__as_node(); 762 __f = __f->__next_; [all …]
|
| D | ostream | 209 basic_ostream& operator<<(float __f); 210 basic_ostream& operator<<(double __f); 211 basic_ostream& operator<<(long double __f); 371 const _Fp& __f = use_facet<_Fp>(this->getloc()); 372 if (__f.put(*this, *this, this->fill(), __n).failed()) 398 const _Fp& __f = use_facet<_Fp>(this->getloc()); 399 if (__f.put(*this, *this, this->fill(), 427 const _Fp& __f = use_facet<_Fp>(this->getloc()); 428 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed()) 454 const _Fp& __f = use_facet<_Fp>(this->getloc()); [all …]
|
| /freebsd-12-stable/contrib/libstdc++/include/tr1/ |
| D | functional_iterate.h | 128 __invoke(_Functor& __f _GLIBCXX_COMMA _GLIBCXX_REF_PARAMS) 130 return __f(_GLIBCXX_ARGS); 141 __invoke(_Functor& __f _GLIBCXX_COMMA _GLIBCXX_REF_PARAMS) 143 return mem_fn(__f)(_GLIBCXX_ARGS); 154 __invoke(_Functor __f _GLIBCXX_COMMA _GLIBCXX_REF_PARAMS) 156 return __f(_GLIBCXX_ARGS); 416 _Bind(_Functor __f _GLIBCXX_COMMA _GLIBCXX_PARAMS) 417 : _M_f(__f) _GLIBCXX_COMMA _GLIBCXX_BIND_MEMBERS_INIT { } 437 _Bind_result(_Functor __f _GLIBCXX_COMMA _GLIBCXX_PARAMS) 438 : _M_f(__f) _GLIBCXX_COMMA _GLIBCXX_BIND_MEMBERS_INIT { } [all …]
|
| /freebsd-12-stable/contrib/libstdc++/config/locale/generic/ |
| D | c_locale.cc | 60 float __f = strtof(__s, &__sanity); in _GLIBCXX_BEGIN_NAMESPACE() local 63 float __f = static_cast<float>(__d); in _GLIBCXX_BEGIN_NAMESPACE() local 65 if (!finitef (__f)) in _GLIBCXX_BEGIN_NAMESPACE() 68 if (!finite (static_cast<double> (__f))) in _GLIBCXX_BEGIN_NAMESPACE() 71 if (isinf (static_cast<double> (__f))) in _GLIBCXX_BEGIN_NAMESPACE() 79 __v = __f; in _GLIBCXX_BEGIN_NAMESPACE()
|
| /freebsd-12-stable/contrib/libstdc++/include/ext/ |
| D | hash_set | 141 hash_set(_InputIterator __f, _InputIterator __l) 143 { _M_ht.insert_unique(__f, __l); } 146 hash_set(_InputIterator __f, _InputIterator __l, size_type __n) 148 { _M_ht.insert_unique(__f, __l); } 151 hash_set(_InputIterator __f, _InputIterator __l, size_type __n, 154 { _M_ht.insert_unique(__f, __l); } 157 hash_set(_InputIterator __f, _InputIterator __l, size_type __n, 161 { _M_ht.insert_unique(__f, __l); } 203 insert(_InputIterator __f, _InputIterator __l) 204 { _M_ht.insert_unique(__f, __l); } [all …]
|
| D | hash_map | 139 hash_map(_InputIterator __f, _InputIterator __l) 141 { _M_ht.insert_unique(__f, __l); } 144 hash_map(_InputIterator __f, _InputIterator __l, size_type __n) 146 { _M_ht.insert_unique(__f, __l); } 149 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, 152 { _M_ht.insert_unique(__f, __l); } 155 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, 159 { _M_ht.insert_unique(__f, __l); } 206 insert(_InputIterator __f, _InputIterator __l) 207 { _M_ht.insert_unique(__f, __l); } [all …]
|
| /freebsd-12-stable/contrib/libstdc++/include/bits/ |
| D | stl_function.h | 713 mem_fun(_Ret (_Tp::*__f)()) in mem_fun() argument 714 { return mem_fun_t<_Ret, _Tp>(__f); } in mem_fun() 718 mem_fun(_Ret (_Tp::*__f)() const) in mem_fun() 719 { return const_mem_fun_t<_Ret, _Tp>(__f); } in mem_fun() 723 mem_fun_ref(_Ret (_Tp::*__f)()) in mem_fun_ref() argument 724 { return mem_fun_ref_t<_Ret, _Tp>(__f); } in mem_fun_ref() 728 mem_fun_ref(_Ret (_Tp::*__f)() const) in mem_fun_ref() 729 { return const_mem_fun_ref_t<_Ret, _Tp>(__f); } in mem_fun_ref() 733 mem_fun(_Ret (_Tp::*__f)(_Arg)) in mem_fun() 734 { return mem_fun1_t<_Ret, _Tp, _Arg>(__f); } in mem_fun() [all …]
|
| D | boost_concept_check.h | 320 const _Return& __r _IsUnused = __f();// require operator() member function 322 _Func __f; 330 __f(); // require operator() member function 332 _Func __f; 339 __r = __f(__arg); // require operator() 341 _Func __f; 349 __f(__arg); // require operator() 351 _Func __f; 359 __r = __f(__first, __second); // require operator() 361 _Func __f; [all …]
|
| /freebsd-12-stable/contrib/libstdc++/include/debug/ |
| D | hash_multiset.h | 93 hash_multiset(_InputIterator __f, _InputIterator __l) in hash_multiset() argument 94 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l) in hash_multiset() 98 hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n) in hash_multiset() argument 99 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n) in hash_multiset() 103 hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n, in hash_multiset() argument 105 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n, __hf) in hash_multiset() 109 hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n, 112 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n, __hf, in _Base() argument
|
| D | hash_set.h | 92 hash_set(_InputIterator __f, _InputIterator __l) in hash_set() argument 93 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l) { } in hash_set() 96 hash_set(_InputIterator __f, _InputIterator __l, size_type __n) in hash_set() argument 97 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n) { } in hash_set() 100 hash_set(_InputIterator __f, _InputIterator __l, size_type __n, in hash_set() argument 102 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n, __hf) { } in hash_set() 105 hash_set(_InputIterator __f, _InputIterator __l, size_type __n, 108 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n, __hf, in _Base() argument
|
| D | hash_multimap.h | 94 hash_multimap(_InputIterator __f, _InputIterator __l) in hash_multimap() argument 95 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l) { } in hash_multimap() 98 hash_multimap(_InputIterator __f, _InputIterator __l, size_type __n) in hash_multimap() argument 99 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n) { } in hash_multimap() 102 hash_multimap(_InputIterator __f, _InputIterator __l, size_type __n, in hash_multimap() argument 104 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n, __hf) { } in hash_multimap() 107 hash_multimap(_InputIterator __f, _InputIterator __l, size_type __n, 110 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n, __hf, in _Base() argument
|