| /netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
| H A D | __functional_03 | 99 template<class _FD, class _Alloc, class _FB> class __func; 102 class __func<_Fp, _Alloc, _Rp()> 107 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)) {} 122 __func<_Fp, _Alloc, _Rp()>::__clone() const 125 typedef typename __rebind_alloc_helper<__alloc_traits, __func>::type _Ap; 128 unique_ptr<__func, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); 129 ::new ((void*)__hold.get()) __func(__f_.first(), _Alloc(__a)); 135 __func<_Fp, _Alloc, _Rp()>::__clone(__base<_Rp()>* __p) const 137 ::new ((void*)__p) __func(__f_.first(), __f_.second()); [all …]
|
| H A D | functional | 1660 // __func implements __base for a given functor type. 1662 template<class _FD, class _Alloc, class _FB> class __func; 1665 class __func<_Fp, _Alloc, _Rp(_ArgTypes...)> 1671 explicit __func(_Fp&& __f) 1675 explicit __func(const _Fp& __f, const _Alloc& __a) 1679 explicit __func(const _Fp& __f, _Alloc&& __a) 1683 explicit __func(_Fp&& __f, _Alloc&& __a) 1699 __func<_Fp, _Alloc, _Rp(_ArgTypes...)>::__clone() const 1702 typedef typename __rebind_alloc_helper<__alloc_traits, __func>::type _Ap; 1705 unique_ptr<__func, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); [all …]
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/src/support/win32/ |
| H A D | thread_win32.cpp | 181 void *(*__func)(void *); member 190 auto *__func = __data->__func; in __libcpp_beginthreadex_thunk() local 193 return static_cast<unsigned>(reinterpret_cast<uintptr_t>(__func(__arg))); in __libcpp_beginthreadex_thunk() 200 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), in __libcpp_thread_create() 204 __data->__func = __func; in __libcpp_thread_create()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/ |
| H A D | gthr-rtems.h | 66 __gthread_create (__gthread_t *__threadid, void *(*__func) (void *), in __gthread_create() 69 return pthread_create (__threadid, NULL, __func, __args); in __gthread_create() 103 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) in __gthread_once() 105 return pthread_once (__once, __func); in __gthread_once()
|
| H A D | gthr-vxworks-thread.c | 219 __task_wrapper (__gthread_t tcb, FUNCPTR __func, _Vx_usr_arg_t __args) in __task_wrapper() argument 230 void *return_value = (void *) __func (__args); in __task_wrapper() 251 __gthread_create (__gthread_t * __threadid, void *(*__func) (void *), in __gthread_create() 286 (_Vx_usr_arg_t) __func, in __gthread_create()
|
| H A D | gthr-vxworks.c | 53 __gthread_once (__gthread_once_t * __guard, void (*__func) (void)) in __gthread_once() 79 __func (); in __gthread_once()
|
| H A D | gthr-vxworks.h | 221 extern int __gthread_once (__gthread_once_t *__once, void (*__func)(void)); 318 void *(*__func) (void*),
|
| /netbsd-src/external/gpl3/gcc/dist/libgcc/config/ |
| H A D | gthr-rtems.h | 66 __gthread_create (__gthread_t *__threadid, void *(*__func) (void *), in __gthread_create() 69 return pthread_create (__threadid, NULL, __func, __args); in __gthread_create() 103 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) in __gthread_once() 105 return pthread_once (__once, __func); in __gthread_once()
|
| H A D | gthr-vxworks-thread.c | 259 __task_wrapper (__gthread_t tcb, FUNCPTR __func, _Vx_usr_arg_t __args) in __task_wrapper() argument 270 void *return_value = (void *) __func (__args); in __task_wrapper() 291 __gthread_create (__gthread_t * __threadid, void *(*__func) (void *), in __gthread_create() 326 (_Vx_usr_arg_t) __func, in __gthread_create()
|
| H A D | gthr-vxworks.c | 54 __gthread_once (__gthread_once_t * __guard, void (*__func) (void)) in __gthread_once() 80 __func (); in __gthread_once()
|
| H A D | gthr-vxworks.h | 221 extern int __gthread_once (__gthread_once_t *__once, void (*__func)(void)); 326 void *(*__func) (void*),
|
| /netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/i386/ |
| H A D | gthr-win32.h | 436 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) in __gthread_once() 439 return __gthr_win32_once (__once, __func); in __gthread_once() 553 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) in __gthread_once() 557 else if (__once == NULL || __func == NULL) in __gthread_once() 564 (*__func) (); in __gthread_once()
|
| /netbsd-src/external/gpl3/gcc/dist/libgcc/config/i386/ |
| H A D | gthr-win32.h | 417 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) in __gthread_once() 420 return __gthr_win32_once (__once, __func); in __gthread_once() 534 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) in __gthread_once() 538 else if (__once == NULL || __func == NULL) in __gthread_once() 545 (*__func) (); in __gthread_once()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Headers/ |
| H A D | __clang_hip_cmath.h | 136 #define __DEF_FUN1(__retty, __func) \ argument 138 __retty __func(float __x) { return __func##f(__x); } 141 #define __DEF_FUN2(__retty, __func) \ argument 143 __retty __func(float __x, float __y) { return __func##f(__x, __y); } 146 #define __DEF_FUN2_FI(__retty, __func) \ argument 148 __retty __func(float __x, int __y) { return __func##f(__x, __y); }
|
| /netbsd-src/external/gpl3/gcc/dist/libgcc/ |
| H A D | gthr-single.h | 217 __gthread_once (__gthread_once_t *__once UNUSED, void (*__func) (void) UNUSED) in __gthread_once() 223 __gthread_key_create (__gthread_key_t *__key UNUSED, void (*__func) (void *) UNUSED) in __gthread_key_create()
|
| H A D | gthr-posix.h | 663 __gthread_create (__gthread_t *__threadid, void *(*__func) (void*), in __gthread_create() 666 return __gthrw_(pthread_create) (__threadid, NULL, __func, __args); in __gthread_create() 700 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) in __gthread_once() 703 return __gthrw_(pthread_once) (__once, __func); in __gthread_once()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libgcc/ |
| H A D | gthr-single.h | 217 __gthread_once (__gthread_once_t *__once UNUSED, void (*__func) (void) UNUSED) in __gthread_once() 223 __gthread_key_create (__gthread_key_t *__key UNUSED, void (*__func) (void *) UNUSED) in __gthread_key_create()
|
| H A D | gthr-posix.h | 663 __gthread_create (__gthread_t *__threadid, void *(*__func) (void*), in __gthread_create() 666 return __gthrw_(pthread_create) (__threadid, NULL, __func, __args); in __gthread_create() 700 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) in __gthread_once() 703 return __gthrw_(pthread_once) (__once, __func); in __gthread_once()
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| H A D | regex_compiler.tcc | 284 #define __INSERT_REGEX_MATCHER(__func, ...)\ argument 288 __func<false, false>(__VA_ARGS__);\ 290 __func<false, true>(__VA_ARGS__);\ 293 __func<true, false>(__VA_ARGS__);\ 295 __func<true, true>(__VA_ARGS__);\
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| H A D | regex_compiler.tcc | 290 #define __INSERT_REGEX_MATCHER(__func, ...)\ argument 294 __func<false, false>(__VA_ARGS__);\ 296 __func<false, true>(__VA_ARGS__);\ 299 __func<true, false>(__VA_ARGS__);\ 301 __func<true, true>(__VA_ARGS__);\
|
| /netbsd-src/sys/dev/ic/ |
| H A D | ath_netbsd.h | 39 #define TASK_INIT(__task, __zero, __func, __context) \ argument 43 __CONCAT(__func, _si), \
|
| /netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/mips/ |
| H A D | gthr-mipssde.h | 102 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) in __gthread_once() 105 return __gthrw_(__sdethread_once) (__once, __func); in __gthread_once()
|
| /netbsd-src/external/gpl3/gcc/dist/libgcc/config/mips/ |
| H A D | gthr-mipssde.h | 102 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) in __gthread_once() 105 return __gthrw_(__sdethread_once) (__once, __func); in __gthread_once()
|
| /netbsd-src/external/gpl3/gcc/dist/libgcc/config/s390/ |
| H A D | gthr-tpf.h | 100 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) in __gthread_once() 103 return __gthrw_(pthread_once) (__once, __func); in __gthread_once()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/s390/ |
| H A D | gthr-tpf.h | 100 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) in __gthread_once() 103 return __gthrw_(pthread_once) (__once, __func); in __gthread_once()
|