Searched refs:__once (Results 1 - 9 of 9) sorted by relevance

/haiku-buildtools/gcc/libgcc/config/
H A Dgthr-rtems.h53 extern int rtems_gxx_once (__gthread_once_t *__once, void (*__func) (void));
81 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) argument
83 return rtems_gxx_once( __once, __func );
H A Dgthr-vxworks.h152 extern int __gthread_once (__gthread_once_t *__once, void (*__func)(void));
/haiku-buildtools/gcc/libgcc/config/i386/
H A Dgthr-win32.h436 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) argument
439 return __gthr_win32_once (__once, __func);
552 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) argument
556 else if (__once == NULL || __func == NULL)
559 if (! __once->done)
561 if (InterlockedIncrement (&(__once->started)) == 0)
564 __once->done = TRUE;
573 while (! __once->done)
/haiku-buildtools/gcc/libgcc/config/mips/
H A Dgthr-mipssde.h102 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) argument
105 return __gthrw_(__sdethread_once) (__once, __func);
/haiku-buildtools/gcc/libgcc/config/s390/
H A Dgthr-tpf.h100 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) argument
103 return __gthrw_(pthread_once) (__once, __func);
/haiku-buildtools/gcc/libgcc/
H A Dgthr-single.h217 __gthread_once (__gthread_once_t *__once UNUSED, void (*__func) (void) UNUSED)
H A Dgthr-posix.h696 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) argument
699 return __gthrw_(pthread_once) (__once, __func);
/haiku-buildtools/gcc/libgcc/config/pa/
H A Dgthr-dce.h439 __gthread_once (__gthread_once_t *__once, void (*__func) (void)) argument
442 return __gthrw_(pthread_once) (__once, __func);
/haiku-buildtools/gcc/libstdc++-v3/include/ext/
H A Dmt_allocator.h444 static __gthread_once_t __once = __GTHREAD_ONCE_INIT; local
445 __gthread_once(&__once, _S_initialize);
539 static __gthread_once_t __once = __GTHREAD_ONCE_INIT; local
540 __gthread_once(&__once, _S_initialize);

Completed in 107 milliseconds