Home
last modified time | relevance | path

Searched refs:__flag (Results 1 – 4 of 4) sorted by relevance

/openbsd/gnu/gcc/libssp/ssp/
H A Dstdio.h53 extern int __sprintf_chk (char *__restrict__ __s, int __flag, size_t __slen,
55 extern int __vsprintf_chk (char *__restrict__ __s, int __flag, size_t __slen,
65 extern int __snprintf_chk (char *__restrict__ __s, size_t __n, int __flag,
68 extern int __vsnprintf_chk (char *__restrict__ __s, size_t __n, int __flag,
/openbsd/gnu/llvm/libcxx/include/
H A Dmutex663 call_once(once_flag& __flag, _Callable&& __func, _Args&&... __args)
665 if (__libcpp_acquire_load(&__flag.__state_) != ~once_flag::_State_type(0))
670 std::__call_once(__flag.__state_, &__p, &__call_once_proxy<_Gp>);
679 call_once(once_flag& __flag, _Callable& __func)
681 if (__libcpp_acquire_load(&__flag.__state_) != ~once_flag::_State_type(0))
684 std::__call_once(__flag.__state_, &__p, &__call_once_proxy<_Callable>);
691 call_once(once_flag& __flag, const _Callable& __func)
693 if (__libcpp_acquire_load(&__flag.__state_) != ~once_flag::_State_type(0))
696 std::__call_once(__flag.__state_, &__p, &__call_once_proxy<const _Callable>);
H A D__threading_support206 int __libcpp_execute_once(__libcpp_exec_once_flag *__flag,
352 int __libcpp_execute_once(__libcpp_exec_once_flag *__flag,
354 return pthread_once(__flag, __init_routine);
/openbsd/gnu/llvm/libcxx/src/support/win32/
H A Dthread_win32.cpp153 int __libcpp_execute_once(__libcpp_exec_once_flag *__flag, in __libcpp_execute_once() argument
156 if (!InitOnceExecuteOnce((PINIT_ONCE)__flag, __libcpp_init_once_execute_once_thunk, in __libcpp_execute_once()