Home
last modified time | relevance | path

Searched refs:__f (Results 1 – 25 of 259) sorted by relevance

1234567891011

/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A D__functional_03107 explicit __func(_Fp __f) : __f_(_VSTD::move(__f), __default_init_tag()) {}
108 explicit __func(_Fp __f, _Alloc __a) : __f_(_VSTD::move(__f), _VSTD::move(__a)) {}
192 …_LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f) : __f_(_VSTD::move(__f), __default_init_tag()) …
193 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f, _Alloc __a)
194 : __f_(_VSTD::move(__f), _VSTD::move(__a)) {}
278 …_LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f) : __f_(_VSTD::move(__f), __default_init_tag()) …
279 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f, _Alloc __a)
280 : __f_(_VSTD::move(__f), _VSTD::move(__a)) {}
364 …_LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f) : __f_(_VSTD::move(__f), __default_init_tag()) …
365 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f, _Alloc __a)
[all …]
H A D__functional_base_0374 __invoke(_Fn __f, _T1& __t1) {
75 return (__t1.*__f)();
81 __invoke(_Fn __f, _T1& __t1, _A0& __a0) {
82 return (__t1.*__f)(__a0);
88 __invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1) {
89 return (__t1.*__f)(__a0, __a1);
95 __invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1, _A2& __a2) {
96 return (__t1.*__f)(__a0, __a1, __a2);
102 __invoke(_Fn __f, _T1& __t1) {
103 return ((*__t1).*__f)();
[all …]
H A Dfunctional1111 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_unary_function(_Result (*__f)(_Arg))
1112 : __f_(__f) {}
1120 ptr_fun(_Result (*__f)(_Arg))
1121 {return pointer_to_unary_function<_Arg,_Result>(__f);}
1129 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_binary_function(_Result (*__f)(_Arg1, _Arg2))
1130 : __f_(__f) {}
1138 ptr_fun(_Result (*__f)(_Arg1,_Arg2))
1139 {return pointer_to_binary_function<_Arg1,_Arg2,_Result>(__f);}
1168 mem_fun(_Sp (_Tp::*__f)())
1169 {return mem_fun_t<_Sp,_Tp>(__f);}
[all …]
H A Dfuture844 explicit __deferred_assoc_state(_Fp&& __f);
851 __deferred_assoc_state<_Rp, _Fp>::__deferred_assoc_state(_Fp&& __f)
852 : __func_(_VSTD::forward<_Fp>(__f))
885 explicit __deferred_assoc_state(_Fp&& __f);
892 __deferred_assoc_state<void, _Fp>::__deferred_assoc_state(_Fp&& __f)
893 : __func_(_VSTD::forward<_Fp>(__f))
928 explicit __async_assoc_state(_Fp&& __f);
935 __async_assoc_state<_Rp, _Fp>::__async_assoc_state(_Fp&& __f)
936 : __func_(_VSTD::forward<_Fp>(__f))
977 explicit __async_assoc_state(_Fp&& __f);
[all …]
H A Ddeque194 copy(_RAIter __f,
202 copy(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
209 copy(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
216 copy_backward(_RAIter __f,
224 copy_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
231 copy_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
238 move(_RAIter __f,
246 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
253 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
260 move_backward(_RAIter __f,
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/include/experimental/
H A Dfunctional115 default_searcher(_ForwardIterator __f, _ForwardIterator __l,
117 : __first_(__f), __last_(__l), __pred_(__p) {}
122 operator () (_ForwardIterator2 __f, _ForwardIterator2 __l) const
124 return _VSTD::__search(__f, __l, __first_, __last_, __pred_,
138 make_default_searcher( _ForwardIterator __f, _ForwardIterator __l, _BinaryPredicate __p = _BinaryPr…
140 return default_searcher<_ForwardIterator, _BinaryPredicate>(__f, __l, __p);
222 boyer_moore_searcher(_RandomAccessIterator1 __f, _RandomAccessIterator1 __l,
224 : __first_(__f), __last_(__l), __pred_(__pred),
230 for ( difference_type __i = 0; __f != __l; ++__f, (void) ++__i )
231 __skip_->insert(*__f, __i);
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__memory/
H A Duninitialized_algorithms.h30 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 …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/
H A Diomanip71 operator>>(basic_istream<_CharT, _Traits>& __is, _Resetiosflags __f)
73 __is.setf(ios_base::fmtflags(0), __f._M_mask);
79 operator<<(basic_ostream<_CharT, _Traits>& __os, _Resetiosflags __f)
81 __os.setf(ios_base::fmtflags(0), __f._M_mask);
101 operator>>(basic_istream<_CharT, _Traits>& __is, _Setiosflags __f)
103 __is.setf(__f._M_mask);
109 operator<<(basic_ostream<_CharT, _Traits>& __os, _Setiosflags __f)
111 __os.setf(__f._M_mask);
132 operator>>(basic_istream<_CharT, _Traits>& __is, _Setbase __f)
134 __is.setf(__f._M_base == 8 ? ios_base::oct :
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
H A Diomanip71 operator>>(basic_istream<_CharT, _Traits>& __is, _Resetiosflags __f)
73 __is.setf(ios_base::fmtflags(0), __f._M_mask);
79 operator<<(basic_ostream<_CharT, _Traits>& __os, _Resetiosflags __f)
81 __os.setf(ios_base::fmtflags(0), __f._M_mask);
101 operator>>(basic_istream<_CharT, _Traits>& __is, _Setiosflags __f)
103 __is.setf(__f._M_mask);
109 operator<<(basic_ostream<_CharT, _Traits>& __os, _Setiosflags __f)
111 __os.setf(__f._M_mask);
132 operator>>(basic_istream<_CharT, _Traits>& __is, _Setbase __f)
134 __is.setf(__f._M_base == 8 ? ios_base::oct :
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dstd_function.h140 const _Functor& __f = __source._M_access<_Functor>(); in _GLIBCXX_VISIBILITY() local
141 return const_cast<_Functor*>(std::__addressof(__f)); in _GLIBCXX_VISIBILITY()
207 _M_init_functor(_Any_data& __functor, _Functor&& __f) in _GLIBCXX_VISIBILITY()
208 { _M_init_functor(__functor, std::move(__f), _Local_storage()); } in _GLIBCXX_VISIBILITY()
212 _M_not_empty_function(const function<_Signature>& __f) in _GLIBCXX_VISIBILITY()
213 { return static_cast<bool>(__f); } in _GLIBCXX_VISIBILITY()
232 _M_init_functor(_Any_data& __functor, _Functor&& __f, true_type) in _GLIBCXX_VISIBILITY()
233 { ::new (__functor._M_access()) _Functor(std::move(__f)); } in _GLIBCXX_VISIBILITY()
236 _M_init_functor(_Any_data& __functor, _Functor&& __f, false_type) in _GLIBCXX_VISIBILITY()
237 { __functor._M_access<_Functor*>() = new _Functor(std::move(__f)); } in _GLIBCXX_VISIBILITY()
[all …]
H A Duniform_int_dist.h199 __generate(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY()
201 { this->__generate(__f, __t, __urng, _M_param); } in _GLIBCXX_VISIBILITY()
206 __generate(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY()
209 { this->__generate_impl(__f, __t, __urng, __p); } in _GLIBCXX_VISIBILITY()
213 __generate(result_type* __f, result_type* __t, in _GLIBCXX_VISIBILITY()
216 { this->__generate_impl(__f, __t, __urng, __p); } in _GLIBCXX_VISIBILITY()
231 __generate_impl(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY()
309 __generate_impl(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY()
333 while (__f != __t) in _GLIBCXX_VISIBILITY()
336 *__f++ = (__ret & __urange) + __param.a(); in _GLIBCXX_VISIBILITY()
[all …]
H A Drandom.h471 _UIntType __c, size_t __l, _UIntType __f> in _GLIBCXX_VISIBILITY()
498 static_assert(__f <= (__detail::_Shift<_UIntType, __w>::__value - 1), in _GLIBCXX_VISIBILITY()
522 static constexpr result_type initialization_multiplier = __f; in _GLIBCXX_VISIBILITY()
667 _UIntType __c, size_t __l, _UIntType __f> in _GLIBCXX_VISIBILITY()
670 __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>& __lhs, in _GLIBCXX_VISIBILITY()
672 __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>& __rhs) in _GLIBCXX_VISIBILITY()
1874 __generate(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY()
1876 { this->__generate(__f, __t, __urng, _M_param); } in _GLIBCXX_VISIBILITY()
1881 __generate(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY()
1884 { this->__generate_impl(__f, __t, __urng, __p); } in _GLIBCXX_VISIBILITY()
[all …]
H A Drandom.tcc194 _UIntType __f>
197 __s, __b, __t, __c, __l, __f>::word_size;
203 _UIntType __f>
206 __s, __b, __t, __c, __l, __f>::state_size;
212 _UIntType __f>
215 __s, __b, __t, __c, __l, __f>::shift_size;
221 _UIntType __f>
224 __s, __b, __t, __c, __l, __f>::mask_bits;
230 _UIntType __f>
233 __s, __b, __t, __c, __l, __f>::xor_mask;
[all …]
H A Dinvoke.h59 __invoke_impl(__invoke_other, _Fn&& __f, _Args&&... __args) in _GLIBCXX_VISIBILITY()
60 { return std::forward<_Fn>(__f)(std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
64 __invoke_impl(__invoke_memfun_ref, _MemFun&& __f, _Tp&& __t, in _GLIBCXX_VISIBILITY()
66 { return (__invfwd<_Tp>(__t).*__f)(std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
70 __invoke_impl(__invoke_memfun_deref, _MemFun&& __f, _Tp&& __t, in _GLIBCXX_VISIBILITY()
73 return ((*std::forward<_Tp>(__t)).*__f)(std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY()
78 __invoke_impl(__invoke_memobj_ref, _MemPtr&& __f, _Tp&& __t) in _GLIBCXX_VISIBILITY()
79 { return __invfwd<_Tp>(__t).*__f; } in _GLIBCXX_VISIBILITY()
83 __invoke_impl(__invoke_memobj_deref, _MemPtr&& __f, _Tp&& __t) in _GLIBCXX_VISIBILITY()
84 { return (*std::forward<_Tp>(__t)).*__f; } in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dstd_function.h138 const _Functor& __f = __source._M_access<_Functor>(); in _GLIBCXX_VISIBILITY() local
139 return const_cast<_Functor*>(std::__addressof(__f)); in _GLIBCXX_VISIBILITY()
150 _M_create(_Any_data& __dest, _Fn&& __f, true_type) in _GLIBCXX_VISIBILITY()
152 ::new (__dest._M_access()) _Functor(std::forward<_Fn>(__f)); in _GLIBCXX_VISIBILITY()
158 _M_create(_Any_data& __dest, _Fn&& __f, false_type) in _GLIBCXX_VISIBILITY()
161 = new _Functor(std::forward<_Fn>(__f)); in _GLIBCXX_VISIBILITY()
211 _M_init_functor(_Any_data& __functor, _Fn&& __f) in _GLIBCXX_VISIBILITY()
215 _M_create(__functor, std::forward<_Fn>(__f), _Local_storage()); in _GLIBCXX_VISIBILITY()
220 _M_not_empty_function(const function<_Signature>& __f) noexcept in _GLIBCXX_VISIBILITY()
221 { return static_cast<bool>(__f); } in _GLIBCXX_VISIBILITY()
[all …]
H A Drandom.h474 _UIntType __c, size_t __l, _UIntType __f> in _GLIBCXX_VISIBILITY()
501 static_assert(__f <= (__detail::_Shift<_UIntType, __w>::__value - 1), in _GLIBCXX_VISIBILITY()
525 static constexpr result_type initialization_multiplier = __f; in _GLIBCXX_VISIBILITY()
670 _UIntType __c, size_t __l, _UIntType __f> in _GLIBCXX_VISIBILITY()
673 __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>& __lhs, in _GLIBCXX_VISIBILITY()
675 __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>& __rhs) in _GLIBCXX_VISIBILITY()
1879 __generate(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY()
1881 { this->__generate(__f, __t, __urng, _M_param); } in _GLIBCXX_VISIBILITY()
1886 __generate(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY()
1889 { this->__generate_impl(__f, __t, __urng, __p); } in _GLIBCXX_VISIBILITY()
[all …]
H A Duniform_int_dist.h203 __generate(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY()
205 { this->__generate(__f, __t, __urng, _M_param); } in _GLIBCXX_VISIBILITY()
210 __generate(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY()
213 { this->__generate_impl(__f, __t, __urng, __p); } in _GLIBCXX_VISIBILITY()
217 __generate(result_type* __f, result_type* __t, in _GLIBCXX_VISIBILITY()
220 { this->__generate_impl(__f, __t, __urng, __p); } in _GLIBCXX_VISIBILITY()
235 __generate_impl(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY()
370 __generate_impl(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY()
395 while (__f != __t) in _GLIBCXX_VISIBILITY()
398 *__f++ = (__ret & __urange) + __param.a(); in _GLIBCXX_VISIBILITY()
[all …]
H A Drandom.tcc196 _UIntType __f>
199 __s, __b, __t, __c, __l, __f>::word_size;
205 _UIntType __f>
208 __s, __b, __t, __c, __l, __f>::state_size;
214 _UIntType __f>
217 __s, __b, __t, __c, __l, __f>::shift_size;
223 _UIntType __f>
226 __s, __b, __t, __c, __l, __f>::mask_bits;
232 _UIntType __f>
235 __s, __b, __t, __c, __l, __f>::xor_mask;
[all …]
H A Dinvoke.h60 __invoke_impl(__invoke_other, _Fn&& __f, _Args&&... __args) in _GLIBCXX_VISIBILITY()
61 { return std::forward<_Fn>(__f)(std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
65 __invoke_impl(__invoke_memfun_ref, _MemFun&& __f, _Tp&& __t, in _GLIBCXX_VISIBILITY()
67 { return (__invfwd<_Tp>(__t).*__f)(std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
71 __invoke_impl(__invoke_memfun_deref, _MemFun&& __f, _Tp&& __t, in _GLIBCXX_VISIBILITY()
74 return ((*std::forward<_Tp>(__t)).*__f)(std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY()
79 __invoke_impl(__invoke_memobj_ref, _MemPtr&& __f, _Tp&& __t) in _GLIBCXX_VISIBILITY()
80 { return __invfwd<_Tp>(__t).*__f; } in _GLIBCXX_VISIBILITY()
84 __invoke_impl(__invoke_memobj_deref, _MemPtr&& __f, _Tp&& __t) in _GLIBCXX_VISIBILITY()
85 { return (*std::forward<_Tp>(__t)).*__f; } in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc/dist/fixincludes/tests/base/bits/
H A Dfenv.h14 __asm__ __volatile__ ("divss %1, %0" : : "x" (__f), "x" (__g));
17 : "=t" (__f) : "0" (__f), "u" (__g) : "st(1)");
24 __asm__ __volatile__ ("divss %0, %0" : : "x" (__f));
27 : "=t" (__f) : "0" (__f));
/netbsd-src/external/gpl3/gcc.old/dist/fixincludes/tests/base/bits/
H A Dfenv.h14 __asm__ __volatile__ ("divss %1, %0" : : "x" (__f), "x" (__g));
17 : "=t" (__f) : "0" (__f), "u" (__g) : "st(1)");
24 __asm__ __volatile__ ("divss %0, %0" : : "x" (__f));
27 : "=t" (__f) : "0" (__f));
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/profile/impl/
H A Dprofiler_trace.h208 void __write(FILE* __f);
296 __write(FILE* __f) in __write() argument
302 std::fprintf(__f, __id); in __write()
303 std::fprintf(__f, "|"); in __write()
304 __gnu_profile::__write(__f, __it->first); in __write()
305 std::fprintf(__f, "|"); in __write()
306 __it->second.__write(__f); in __write()
325 FILE* __f, __warning_vector_t& __warnings) in __trace_report() argument
330 __cont->__write(__f); in __trace_report()
373 __log_magnitude(float __f) in __log_magnitude() argument
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/cpu/i486/opt/bits/
H A Dopt_random.h50 __generate(typename normal_distribution<double>::result_type* __f, in _GLIBCXX_VISIBILITY()
57 if (__f == __t) in _GLIBCXX_VISIBILITY()
63 *__f++ = _M_saved * __param.stddev() + __param.mean(); in _GLIBCXX_VISIBILITY()
65 if (__f == __t) in _GLIBCXX_VISIBILITY()
80 while (__f + 1 < __t) in _GLIBCXX_VISIBILITY()
189 _mm_storeu_pd(__f, __x); in _GLIBCXX_VISIBILITY()
190 __f += 2; in _GLIBCXX_VISIBILITY()
193 if (__f != __t) in _GLIBCXX_VISIBILITY()
211 *__f = __y * __mult * __param.stddev() + __param.mean(); in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/cpu/i486/opt/bits/
H A Dopt_random.h50 __generate(typename normal_distribution<double>::result_type* __f, in _GLIBCXX_VISIBILITY()
57 if (__f == __t) in _GLIBCXX_VISIBILITY()
63 *__f++ = _M_saved * __param.stddev() + __param.mean(); in _GLIBCXX_VISIBILITY()
65 if (__f == __t) in _GLIBCXX_VISIBILITY()
80 while (__f + 1 < __t) in _GLIBCXX_VISIBILITY()
189 _mm_storeu_pd(__f, __x); in _GLIBCXX_VISIBILITY()
190 __f += 2; in _GLIBCXX_VISIBILITY()
193 if (__f != __t) in _GLIBCXX_VISIBILITY()
211 *__f = __y * __mult * __param.stddev() + __param.mean(); in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/pstl/
H A Dparallel_impl.h29 __parallel_find(_ExecutionPolicy&& __exec, _Index __first, _Index __last, _Brick __f, _Compare __co… in __parallel_find() argument
37 [__comp, __f, __first, &__extremum](_Index __i, _Index __j) { in __parallel_find()
42 _Index __res = __f(__i, __j); in __parallel_find()
64 __parallel_or(_ExecutionPolicy&& __exec, _Index __first, _Index __last, _Brick __f) in __parallel_or() argument
68 [__f, &__found](_Index __i, _Index __j) { in __parallel_or()
69 if (!__found.load(std::memory_order_relaxed) && __f(__i, __j)) in __parallel_or()

1234567891011