Home
last modified time | relevance | path

Searched refs:__func (Results 1 – 8 of 8) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/libcxx/include/__functional/
Dfunction.h268 template<class _FD, class _Alloc, class _FB> class __func;
271 class __func<_Fp, _Alloc, _Rp(_ArgTypes...)>
277 explicit __func(_Fp&& __f)
281 explicit __func(const _Fp& __f, const _Alloc& __a)
285 explicit __func(const _Fp& __f, _Alloc&& __a)
289 explicit __func(_Fp&& __f, _Alloc&& __a)
305 __func<_Fp, _Alloc, _Rp(_ArgTypes...)>::__clone() const
308 typedef typename __rebind_alloc_helper<__alloc_traits, __func>::type _Ap;
311 unique_ptr<__func, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
312 ::new ((void*)__hold.get()) __func(__f_.__target(), _Alloc(__a));
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Headers/
D__clang_hip_cmath.h190 #define __DEF_FUN1(__retty, __func) \ argument
191 __DEVICE__ __CONSTEXPR__ __retty __func(float __x) { return __func##f(__x); }
194 #define __DEF_FUN2(__retty, __func) \ argument
195 __DEVICE__ __CONSTEXPR__ __retty __func(float __x, float __y) { \
196 return __func##f(__x, __y); \
200 #define __DEF_FUN2_FI(__retty, __func) \ argument
201 __DEVICE__ __CONSTEXPR__ __retty __func(float __x, int __y) { \
202 return __func##f(__x, __y); \
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
Dmutex669 call_once(once_flag& __flag, _Callable&& __func, _Args&&... __args)
674 _Gp __f(_VSTD::forward<_Callable>(__func), _VSTD::forward<_Args>(__args)...);
685 call_once(once_flag& __flag, _Callable& __func)
689 __call_once_param<_Callable> __p(__func);
697 call_once(once_flag& __flag, const _Callable& __func)
701 __call_once_param<const _Callable> __p(__func);
D__threading_support259 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *),
511 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *),
514 return pthread_create(__t, nullptr, __func, __arg);
672 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *),
675 int __ec = thrd_create(__t, reinterpret_cast<thrd_start_t>(__func), __arg);
D__debug79 bool __libcpp_set_debug_function(__libcpp_debug_function_type __func);
/freebsd-12-stable/contrib/libstdc++/include/ext/
Dcodecvt_specializations.h306 __iconv_adaptor(size_t(*__func)(iconv_t, _Tp, size_t*, char**, size_t*), in __iconv_adaptor()
309 { return __func(__cd, (_Tp)__inbuf, __inbytes, __outbuf, __outbytes); } in __iconv_adaptor()
/freebsd-12-stable/contrib/llvm-project/libcxx/include/__ranges/
Dtransform_view.h60 constexpr transform_view(_View __base, _Fn __func) in transform_view() argument
61 : __func_(_VSTD::in_place, _VSTD::move(__func)), __base_(_VSTD::move(__base)) {} in transform_view()
/freebsd-12-stable/contrib/llvm-project/libcxx/src/
Ddebug.cpp41 bool __libcpp_set_debug_function(__libcpp_debug_function_type __func) { in __libcpp_set_debug_function() argument
42 __libcpp_debug_function = __func; in __libcpp_set_debug_function()