Searched refs:__f (Results 1 - 25 of 91) sorted by relevance

1234

/openbsd-current/gnu/llvm/libcxx/include/__algorithm/
H A Dfor_each.h24 _Function __f) {
26 __f(*__first);
27 return __f;
22 for_each(_InputIterator __first, _InputIterator __last, _Function __f) argument
H A Dfor_each_n.h28 _Function __f) {
32 __f(*__first);
26 for_each_n(_InputIterator __first, _Size __orig_n, _Function __f) argument
/openbsd-current/gnu/gcc/fixincludes/tests/base/sys/
H A Dstat.h27 static int stat(const char *__f, struct stat *__p) { argument
28 return __stat32(__f, __p);
38 static int stat(__f, __p)
39 char *__f; variable
42 return __stat32(__f, __p);
/openbsd-current/gnu/llvm/libcxx/src/include/ryu/
H A Df2s.h49 [[nodiscard]] to_chars_result __f2s_buffered_n(char* const _First, char* const _Last, const float __f, const chars_format _Fmt);
H A Dd2s.h56 [[nodiscard]] to_chars_result __d2s_buffered_n(char* const _First, char* const _Last, const double __f, const chars_format _Fmt);
/openbsd-current/gnu/usr.bin/gcc/gcc/fixinc/tests/base/sys/
H A Dstat.h32 static int stat(const char *__f, struct stat *__p) { argument
33 return __stat32(__f, __p);
43 static int stat(__f, __p)
44 char *__f; variable
47 return __stat32(__f, __p);
/openbsd-current/gnu/llvm/libcxx/include/__functional/
H A Dfunction.h119 bool __not_null(function<_Fp> const& __f) { return !!__f; } argument
154 explicit __alloc_func(_Target&& __f) argument
155 : __f_(piecewise_construct, _VSTD::forward_as_tuple(_VSTD::move(__f)),
161 explicit __alloc_func(const _Target& __f, const _Alloc& __a) argument
162 : __f_(piecewise_construct, _VSTD::forward_as_tuple(__f),
168 explicit __alloc_func(const _Target& __f, _Alloc&& __a) argument
169 : __f_(piecewise_construct, _VSTD::forward_as_tuple(__f),
175 explicit __alloc_func(_Target&& __f, _Alloc&& __a) argument
176 : __f_(piecewise_construct, _VSTD::forward_as_tuple(_VSTD::move(__f)),
204 __destroy_and_delete(__alloc_func* __f) argument
224 __default_alloc_func(_Target&& __f) argument
227 __default_alloc_func(const _Target& __f) argument
248 __destroy_and_delete(__default_alloc_func* __f) argument
288 __func(_Fp&& __f) argument
292 __func(const _Fp& __f, const _Alloc& __a) argument
296 __func(const _Fp& __f, _Alloc&& __a) argument
300 __func(_Fp&& __f, _Alloc&& __a) argument
402 __value_func(_Fp&& __f, const _Alloc& __a) argument
431 __value_func(_Fp&& __f) argument
435 __value_func(const __value_func& __f) argument
475 operator =(__value_func&& __f) argument
496 __func* __f = __f_; local
744 __policy_func(_Fp&& __f, const _Alloc& __a) argument
774 __policy_func(_Fp&& __f) argument
793 __policy_func(const __policy_func& __f) argument
802 __policy_func(__policy_func&& __f) argument
821 operator =(__policy_func&& __f) argument
851 swap(__policy_func& __f) argument
898 __func(__block_type const& __f) argument
909 __func(__block_type __f, const _Alloc& ) argument
1040 assign(_Fp&& __f, const _Alloc& __a) argument
1076 function(const function& __f) argument
1081 function(allocator_arg_t, const _Alloc&, const function& __f) argument
1092 function(allocator_arg_t, const _Alloc&, function&& __f) argument
1099 function(_Fp __f) argument
1104 function(allocator_arg_t, const _Alloc& __a, _Fp __f) argument
1111 operator =(const function& __f) argument
1136 operator =(_Fp&& __f) argument
[all...]
H A Dpointer_to_binary_function.h30 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_binary_function(_Result (*__f)(_Arg1, _Arg2)) argument
31 : __f_(__f) {}
39 ptr_fun(_Result (*__f)(_Arg1,_Arg2)) argument
40 {return pointer_to_binary_function<_Arg1,_Arg2,_Result>(__f);}
H A Dpointer_to_unary_function.h30 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_unary_function(_Result (*__f)(_Arg)) argument
31 : __f_(__f) {}
39 ptr_fun(_Result (*__f)(_Arg)) argument
40 {return pointer_to_unary_function<_Arg,_Result>(__f);}
H A Dbind_back.h35 _LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Fn&& __f, _BoundArgs&& __bound_args, _Args&&... __args) const
36 noexcept(noexcept(_VSTD::invoke(_VSTD::forward<_Fn>(__f), _VSTD::forward<_Args>(__args)..., _VSTD::get<_Ip>(_VSTD::forward<_BoundArgs>(__bound_args))...)))
37 -> decltype( _VSTD::invoke(_VSTD::forward<_Fn>(__f), _VSTD::forward<_Args>(__args)..., _VSTD::get<_Ip>(_VSTD::forward<_BoundArgs>(__bound_args))...))
38 { return _VSTD::invoke(_VSTD::forward<_Fn>(__f), _VSTD::forward<_Args>(__args)..., _VSTD::get<_Ip>(_VSTD::forward<_BoundArgs>(__bound_args))...); }
55 constexpr auto __bind_back(_Fn&& __f, _Args&&... __args)
56 noexcept(noexcept(__bind_back_t<decay_t<_Fn>, tuple<decay_t<_Args>...>>(_VSTD::forward<_Fn>(__f), _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...))))
57 -> decltype( __bind_back_t<decay_t<_Fn>, tuple<decay_t<_Args>...>>(_VSTD::forward<_Fn>(__f), _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...)))
58 { return __bind_back_t<decay_t<_Fn>, tuple<decay_t<_Args>...>>(_VSTD::forward<_Fn>(__f), _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...)); }
H A Dmem_fun_ref.h52 mem_fun(_Sp (_Tp::*__f)())
53 {return mem_fun_t<_Sp,_Tp>(__f);}
58 mem_fun(_Sp (_Tp::*__f)(_Ap))
59 {return mem_fun1_t<_Sp,_Tp,_Ap>(__f);}
88 mem_fun_ref(_Sp (_Tp::*__f)())
89 {return mem_fun_ref_t<_Sp,_Tp>(__f);}
94 mem_fun_ref(_Sp (_Tp::*__f)(_Ap))
95 {return mem_fun1_ref_t<_Sp,_Tp,_Ap>(__f);}
124 mem_fun(_Sp (_Tp::*__f)() const)
125 {return const_mem_fun_t<_Sp,_Tp>(__f);}
[all...]
H A Ddefault_searcher.h33 default_searcher(_ForwardIterator __f, _ForwardIterator __l, argument
35 : __first_(__f), __last_(__l), __pred_(__p) {}
40 operator () (_ForwardIterator2 __f, _ForwardIterator2 __l) const argument
43 return std::__search_impl(__f, __l, __first_, __last_, __pred_, __proj, __proj);
H A Dmem_fn.h37 __mem_fn(type __f) _NOEXCEPT : __f_(__f) {}
/openbsd-current/gnu/gcc/libstdc++-v3/include/std/
H A Dstd_iomanip.h72 operator>>(basic_istream<_CharT,_Traits>& __is, _Resetiosflags __f) argument
74 __is.setf(ios_base::fmtflags(0), __f._M_mask);
80 operator<<(basic_ostream<_CharT,_Traits>& __os, _Resetiosflags __f) argument
82 __os.setf(ios_base::fmtflags(0), __f._M_mask);
106 operator>>(basic_istream<_CharT,_Traits>& __is, _Setiosflags __f) argument
108 __is.setf(__f._M_mask);
114 operator<<(basic_ostream<_CharT,_Traits>& __os, _Setiosflags __f) argument
116 __os.setf(__f._M_mask);
141 operator>>(basic_istream<_CharT,_Traits>& __is, _Setbase __f) argument
143 __is.setf(__f
152 operator <<(basic_ostream<_CharT,_Traits>& __os, _Setbase __f) argument
183 operator >>(basic_istream<_CharT,_Traits>& __is, _Setfill<_CharT> __f) argument
191 operator <<(basic_ostream<_CharT,_Traits>& __os, _Setfill<_CharT> __f) argument
217 operator >>(basic_istream<_CharT,_Traits>& __is, _Setprecision __f) argument
225 operator <<(basic_ostream<_CharT,_Traits>& __os, _Setprecision __f) argument
251 operator >>(basic_istream<_CharT,_Traits>& __is, _Setw __f) argument
259 operator <<(basic_ostream<_CharT,_Traits>& __os, _Setw __f) argument
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/std/
H A Dstd_iomanip.h73 operator>>(basic_istream<_CharT,_Traits>& __is, _Resetiosflags __f) argument
75 __is.setf(ios_base::fmtflags(0), __f._M_mask);
81 operator<<(basic_ostream<_CharT,_Traits>& __os, _Resetiosflags __f) argument
83 __os.setf(ios_base::fmtflags(0), __f._M_mask);
107 operator>>(basic_istream<_CharT,_Traits>& __is, _Setiosflags __f) argument
109 __is.setf(__f._M_mask);
115 operator<<(basic_ostream<_CharT,_Traits>& __os, _Setiosflags __f) argument
117 __os.setf(__f._M_mask);
142 operator>>(basic_istream<_CharT,_Traits>& __is, _Setbase __f) argument
144 __is.setf(__f
153 operator <<(basic_ostream<_CharT,_Traits>& __os, _Setbase __f) argument
184 operator >>(basic_istream<_CharT,_Traits>& __is, _Setfill<_CharT> __f) argument
192 operator <<(basic_ostream<_CharT,_Traits>& __os, _Setfill<_CharT> __f) argument
218 operator >>(basic_istream<_CharT,_Traits>& __is, _Setprecision __f) argument
226 operator <<(basic_ostream<_CharT,_Traits>& __os, _Setprecision __f) argument
252 operator >>(basic_istream<_CharT,_Traits>& __is, _Setw __f) argument
260 operator <<(basic_ostream<_CharT,_Traits>& __os, _Setw __f) argument
[all...]
/openbsd-current/gnu/llvm/libcxx/include/__filesystem/
H A Du8path.h39 u8path(_InputIt __f, _InputIt __l) { argument
48 string __tmp(__f, __l);
55 return path(__f, __l);
63 u8path(_InputIt __f, _NullSentinel) { argument
73 for (; *__f != __sentinel; ++__f)
74 __tmp.push_back(*__f);
/openbsd-current/gnu/gcc/libstdc++-v3/config/locale/generic/
H A Dc_locale.cc60 float __f = strtof(__s, &__sanity); local
63 float __f = static_cast<float>(__d); local
65 if (!finitef (__f))
68 if (!finite (static_cast<double> (__f)))
71 if (isinf (static_cast<double> (__f)))
79 __v = __f;
/openbsd-current/gnu/llvm/libcxx/include/__thread/
H A Dpoll_with_backoff.h29 // - __f is the "test function" that should return true if polling succeeded, and false if it failed.
39 bool __libcpp_thread_poll_with_backoff(_Fn&& __f, _BFn&& __bf, chrono::nanoseconds __max_elapsed = chrono::nanoseconds::zero()) { argument
42 if (__f())
/openbsd-current/gnu/llvm/libcxx/include/__ranges/
H A Dnon_propagating_cache.h50 constexpr explicit __wrapper(__from_tag, _Fn const& __f) : __t_(__f()) { } argument
96 constexpr _Tp& __emplace_from(_Fn const& __f) { argument
97 return __value_.emplace(__from_tag{}, __f).__t_;
/openbsd-current/gnu/gcc/libstdc++-v3/include/c_std/
H A Dstd_cmath.h468 __capture_fpclassify(_Tp __f) { return fpclassify(__f); } argument
472 __capture_isfinite(_Tp __f) { return isfinite(__f); } argument
476 __capture_isinf(_Tp __f) { return isinf(__f); } argument
480 __capture_isnan(_Tp __f) { return isnan(__f); } argument
484 __capture_isnormal(_Tp __f) { return isnormal(__f); } argument
488 __capture_signbit(_Tp __f) argument
539 fpclassify(_Tp __f) argument
543 isfinite(_Tp __f) argument
547 isinf(_Tp __f) argument
551 isnan(_Tp __f) argument
555 isnormal(_Tp __f) argument
559 signbit(_Tp __f) argument
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/locale/generic/
H A Dc_locale.cc128 float __f = strtof(__s, &__sanity); local
131 float __f = static_cast<float>(__d); local
133 if (!finitef (__f))
136 if (!finite (static_cast<double> (__f)))
139 if (isinf (static_cast<double> (__f)))
147 __v = __f;
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/ext/
H A Dstdio_filebuf.h91 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode,
145 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode, argument
148 _M_file.sys_open(__f, __mode);
/openbsd-current/gnu/llvm/libcxx/include/__numeric/
H A Dmidpoint.h73 _LIBCPP_HIDE_FROM_ABI constexpr _Fp __fp_abs(_Fp __f) { return __f >= 0 ? __f : -__f; }
/openbsd-current/gnu/llvm/libcxx/include/__random/
H A Dmersenne_twister_engine.h33 _UIntType __b, size_t __t, _UIntType __c, size_t __l, _UIntType __f>
75 _UIntType __b, size_t __t, _UIntType __c, size_t __l, _UIntType __f>
105 static_assert(__f <= _Max, "mersenne_twister_engine invalid parameters");
120 static _LIBCPP_CONSTEXPR const result_type initialization_multiplier = __f;
249 _UIntType __b, size_t __t, _UIntType __c, size_t __l, _UIntType __f>
251 mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>::word_size;
255 _UIntType __b, size_t __t, _UIntType __c, size_t __l, _UIntType __f>
257 mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>::state_size;
261 _UIntType __b, size_t __t, _UIntType __c, size_t __l, _UIntType __f>
263 mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>
[all...]
/openbsd-current/gnu/llvm/libcxx/include/__format/
H A Dconcepts.h50 requires(formatter<remove_cvref_t<_Tp>, _CharT> __f,
55 { __f.parse(__pc) } -> same_as<typename basic_format_parse_context<_CharT>::iterator>;

Completed in 456 milliseconds

1234