Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/libcxx/include/__functional/
H A Dfunction.h277 explicit __func(_Fp&& __f)
377 __func* __f_;
484 __func* __f = __f_;
906 ::new ((void*)__p) __func(__f_);
956 __func __f_;
1316 class __func<_Fp, _Alloc, _Rp()>
1356 __func<_Fp, _Alloc, _Rp()>::destroy()
1374 __func<_Fp, _Alloc, _Rp()>::operator()()
1401 class __func<_Fp, _Alloc, _Rp(_A0)>
1442 __func<_Fp, _Alloc, _Rp(_A0)>::destroy()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Headers/
H A 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-13.1/contrib/llvm-project/libcxx/include/
H A 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);
H A 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);
H A D__debug79 bool __libcpp_set_debug_function(__libcpp_debug_function_type __func);
/freebsd-13.1/contrib/llvm-project/libcxx/include/__ranges/
H A 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-13.1/contrib/llvm-project/libcxx/src/
H A 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()