Home
last modified time | relevance | path

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

1234

/llvm-project-15.0.7/libcxx/include/__functional/
H A Dfunction.h441 else if ((void*)__f.__f_ == &__f.__buf_)
533 __f.__f_ = __as_base(&__f.__buf_);
540 __f.__f_ = __as_base(&__f.__buf_);
1897 __f.__f_ = (__base*)&__f.__buf_;
1904 __f.__f_ = (__base*)&__f.__buf_;
2175 __f.__f_ = (__base*)&__f.__buf_;
2182 __f.__f_ = (__base*)&__f.__buf_;
2453 __f.__f_ = (__base*)&__f.__buf_;
2460 __f.__f_ = (__base*)&__f.__buf_;
2731 __f.__f_ = (__base*)&__f.__buf_;
[all …]
H A Dmem_fun_ref.h52 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()
124 mem_fun(_Sp (_Tp::*__f)() const) in mem_fun()
130 mem_fun(_Sp (_Tp::*__f)(_Ap) const) in mem_fun()
160 mem_fun_ref(_Sp (_Tp::*__f)() const) in mem_fun_ref()
[all …]
H A Dbind_back.h35 …_LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Fn&& __f, _BoundArgs&& __bound_args, _Args&&... _…
36 …noexcept(noexcept(_VSTD::invoke(_VSTD::forward<_Fn>(__f), _VSTD::forward<_Args>(__args)..., _VSTD:…
37 …-> decltype( _VSTD::invoke(_VSTD::forward<_Fn>(__f), _VSTD::forward<_Args>(__args)..., _VSTD:…
38 …{ return _VSTD::invoke(_VSTD::forward<_Fn>(__f), _VSTD::forward<_Args>(__args)..., _VSTD:…
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), …
57 …-> decltype( __bind_back_t<decay_t<_Fn>, tuple<decay_t<_Args>...>>(_VSTD::forward<_Fn>(__f), …
58 …{ return __bind_back_t<decay_t<_Fn>, tuple<decay_t<_Args>...>>(_VSTD::forward<_Fn>(__f), …
H A Dinvoke.h341 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args)
349 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args)
357 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args)
367 __invoke(_Fp&& __f, _A0&& __a0)
369 { return static_cast<_A0&&>(__a0).*__f; }
375 __invoke(_Fp&& __f, _A0&& __a0)
376 _NOEXCEPT_(noexcept(__a0.get().*__f))
377 { return __a0.get().*__f; }
383 __invoke(_Fp&& __f, _A0&& __a0)
392 __invoke(_Fp&& __f, _Args&& ...__args)
[all …]
H A Dpointer_to_unary_function.h30 _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()
H A Ddefault_searcher.h33 default_searcher(_ForwardIterator __f, _ForwardIterator __l,
35 : __first_(__f), __last_(__l), __pred_(__p) {} in __first_() argument
40 operator () (_ForwardIterator2 __f, _ForwardIterator2 __l) const in operator()
43 return std::__search_impl(__f, __l, __first_, __last_, __pred_, __proj, __proj); in operator()
H A Dpointer_to_binary_function.h30 _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()
H A Dbind.h260 __apply_functor(_Fp& __f, _BoundArgs& __bound_args, __tuple_indices<_Indx...>,
263 return _VSTD::__invoke(__f, _VSTD::__mu(_VSTD::get<_Indx>(__bound_args), __args)...);
286 explicit __bind(_Gp&& __f, _BA&& ...__bound_args)
287 : __f_(_VSTD::forward<_Gp>(__f)),
331 explicit __bind_r(_Gp&& __f, _BA&& ...__bound_args)
332 : base(_VSTD::forward<_Gp>(__f),
370 bind(_Fp&& __f, _BoundArgs&&... __bound_args)
373 return type(_VSTD::forward<_Fp>(__f), _VSTD::forward<_BoundArgs>(__bound_args)...);
379 bind(_Fp&& __f, _BoundArgs&&... __bound_args)
382 return type(_VSTD::forward<_Fp>(__f), _VSTD::forward<_BoundArgs>(__bound_args)...);
/llvm-project-15.0.7/libcxx/include/experimental/
H A Dfunctional212 for ( difference_type __i = 0; __f != __l; ++__f, (void) ++__i )
213 __skip_->insert(*__f, __i);
227 if (__first_ == __last_) return make_pair(__f, __f); // empty pattern
234 return this->__search(__f, __l);
249 _RandomAccessIterator2 __cur = __f;
288 while ( __k > 0 && !__pred ( __f[__k], __f[__i] ))
291 if ( __pred ( __f[__k], __f[__i] ))
360 if ( __f != __l )
363 for ( difference_type __i = 0; __f != __l; ++__f, (void) ++__i )
377 if (__first_ == __last_) return make_pair(__f, __f); // empty pattern
[all …]
/llvm-project-15.0.7/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>
255 _UIntType __b, size_t __t, _UIntType __c, size_t __l, _UIntType __f>
261 _UIntType __b, size_t __t, _UIntType __c, size_t __l, _UIntType __f>
336 __t, __c, __l, __f>::seed(result_type __sd) in seed()
351 __t, __c, __l, __f>::__seed(_Sseq& __q, integral_constant<unsigned, 1>) in __seed()
376 __t, __c, __l, __f>::__seed(_Sseq& __q, integral_constant<unsigned, 2>) in __seed()
[all …]
/llvm-project-15.0.7/libcxx/include/
H A Dfuture1740 else if (__f.__f_ == __f.__get_buf())
1811 else if (__f.__f_ == __f.__get_buf())
1838 if (__f_ == (__base*)&__buf_ && __f.__f_ == (__base*)&__f.__buf_)
1851 __f.__f_ = (__base*)&__f.__buf_;
1858 __f.__f_ = (__base*)&__f.__buf_;
1860 else if (__f.__f_ == (__base*)&__f.__buf_)
1896 explicit packaged_task(_Fp&& __f) : __f_(_VSTD::forward<_Fp>(__f)) {}
2157 __async_func(__async_func&& __f) : __f_(_VSTD::move(__f.__f_)) {}
2227 shared_future(future<_Rp>&& __f) _NOEXCEPT : __state_(__f.__state_)
2297 shared_future(future<_Rp&>&& __f) _NOEXCEPT : __state_(__f.__state_)
[all …]
H A Ddeque227 copy(_RAIter __f,
271 move(_RAIter __f,
595 copy(_RAIter __f,
771 move(_RAIter __f,
1769 for (; __f != __l && __i != __e; ++__f, (void) ++__i)
2362 for (; __f != __l; ++__f)
2739 // move assign [__f, __l) to [__r, __r + (__l-__f)).
2747 // for (; __f != __l; ++__f, ++__r)
2769 // move assign [__f, __l) to [__r - (__l-__f), __r) backwards.
2800 // move construct [__f, __l) to [__r, __r + (__l-__f)).
[all …]
H A Dlist742 __f = __f->__next_;
1177 __f->__prev_->__next_ = __f;
1227 for (; __f != __l; ++__f)
1238 for (; __f != __l; ++__f)
1363 for (; __f != __l && __i != __e; ++__f, (void) ++__i)
1483 for (++__f; __f != __l; ++__f, (void) ++__e, ++__ds)
1749 ++__f;
1926 base::__unlink_nodes(__f, __f);
1927 __link_nodes(__p.__ptr_, __f, __f);
2180 base::__unlink_nodes(__f, __f);
[all …]
/llvm-project-15.0.7/libcxx/include/__filesystem/
H A Du8path.h39 u8path(_InputIt __f, _InputIt __l) { in u8path() argument
48 string __tmp(__f, __l); in u8path()
55 return path(__f, __l); in u8path()
63 u8path(_InputIt __f, _NullSentinel) { in u8path() argument
73 for (; *__f != __sentinel; ++__f) in u8path()
74 __tmp.push_back(*__f); in u8path()
/llvm-project-15.0.7/pstl/include/pstl/internal/omp/
H A Dparallel_for.h25 __parallel_for_body(_Index __first, _Index __last, _Fp __f) in __parallel_for_body() argument
34 __pstl::__omp_backend::__process_chunk(__policy, __first, __chunk, __f); in __parallel_for_body()
45 …pstl::__internal::__openmp_backend_tag, _ExecutionPolicy&&, _Index __first, _Index __last, _Fp __f) in __parallel_for() argument
51 __pstl::__omp_backend::__parallel_for_body(__first, __last, __f); in __parallel_for()
58 …STL_PRAGMA(omp single nowait) { __pstl::__omp_backend::__parallel_for_body(__first, __last, __f); } in __parallel_for()
H A Dparallel_for_each.h23 __parallel_for_each_body(_ForwardIterator __first, _ForwardIterator __last, _Fp __f) in __parallel_for_each_body() argument
34 __f(*__iter); in __parallel_for_each_body()
40 __parallel_for_each(_ExecutionPolicy&&, _ForwardIterator __first, _ForwardIterator __last, _Fp __f) in __parallel_for_each() argument
46 __pstl::__omp_backend::__parallel_for_each_body(__first, __last, __f); in __parallel_for_each()
53 …RAGMA(omp single nowait) { __pstl::__omp_backend::__parallel_for_each_body(__first, __last, __f); } in __parallel_for_each()
/llvm-project-15.0.7/pstl/include/pstl/internal/
H A Dparallel_impl.h33 …allel_find(_BackendTag __tag, _ExecutionPolicy&& __exec, _Index __first, _Index __last, _Brick __f, in __parallel_find() argument
42 [__comp, __f, __first, &__extremum](_Index __i, _Index __j) in __parallel_find()
48 _Index __res = __f(__i, __j); in __parallel_find()
70 …arallel_or(_BackendTag __tag, _ExecutionPolicy&& __exec, _Index __first, _Index __last, _Brick __f) in __parallel_or() argument
74 [__f, &__found](_Index __i, _Index __j) in __parallel_or()
76 if (!__found.load(std::memory_order_relaxed) && __f(__i, __j)) in __parallel_or()
H A Dutils.h25 __except_handler(_Fp __f) -> decltype(__f())
29 return __f();
43 __invoke_if(std::true_type, _Fp __f) in __invoke_if() argument
45 __f(); in __invoke_if()
55 __invoke_if_not(std::false_type, _Fp __f) in __invoke_if_not() argument
57 __f(); in __invoke_if_not()
/llvm-project-15.0.7/libcxx/include/__algorithm/
H A Dfor_each.h24 _Function __f) { in for_each() argument
26 __f(*__first); in for_each()
27 return __f; in for_each()
/llvm-project-15.0.7/llvm/test/Transforms/Inline/
H A Ddelete-function-with-metadata-use.ll15 define linkonce_odr void @f2(void ()* %__f) {
16 call void @llvm.dbg.value(metadata void ()* %__f, metadata !2, metadata !DIExpression()), !dbg !10
17 call void %__f()
31 !2 = !DILocalVariable(name: "__f", arg: 3, scope: !3, file: !4, line: 3814, type: !9)
/llvm-project-15.0.7/libcxx/include/__ranges/
H A Dnon_propagating_cache.h50 constexpr explicit __wrapper(__from_tag, _Fn const& __f) : __t_(__f()) { } in __wrapper()
96 constexpr _Tp& __emplace_from(_Fn const& __f) { in __emplace_from() argument
97 return __value_.emplace(__from_tag{}, __f).__t_; in __emplace_from()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/Inputs/reserved-identifier/system/
H A Dsystem-header.h3 void __f() {} in __f() function
14 reference_wrapper(type &__f) in reference_wrapper() argument
15 : __f_(&__f) {} in reference_wrapper()
/llvm-project-15.0.7/libcxx/include/__numeric/
H A Dmidpoint.h63 constexpr _Fp __fp_abs(_Fp __f) { return __f >= 0 ? __f : -__f; } in __fp_abs() argument
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dreserved-identifier-invert.cpp11 void __f() {} in __f() function
35 reference_wrapper(type &__f) in reference_wrapper() argument
36 : __f_(&__f) {} in reference_wrapper()
/llvm-project-15.0.7/libcxx/include/__support/win32/
H A Dlocale_win32.h263 #define sscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ ) argument
264 #define sprintf_l( __s, __l, __f, ... ) _sprintf_l( __s, __f, __l, __VA_ARGS__ ) argument
265 #define vsprintf_l( __s, __l, __f, ... ) _vsprintf_l( __s, __f, __l, __VA_ARGS__ ) argument
266 #define vsnprintf_l( __s, __n, __l, __f, ... ) _vsnprintf_l( __s, __n, __f, __l, __VA_ARGS__ ) argument

1234